Nursura Chat Assistant
Nursura is a responsive web-based chat assistant tailored to provide empathetic and practical support for teenage girls. This project uses TailwindCSS for styling and integrates with the Ollama API for generating responses from an AI model.
- Responsive Design: Optimized for various screen sizes using TailwindCSS.
- Chat Interface: Allows users to send and receive messages in a user-friendly format.
- AI-Powered Responses: Provides concise, empathetic, and practical advice using the Mistral model through the Ollama API.
- Node.js: Ensure you have Node.js installed on your machine.
- Ollama API: Install and set up the Ollama API locally. It must be accessible at
http://localhost:11434
. - Web Browser: A modern browser like Chrome, Firefox, or Edge.
-
Clone this repository:
git clone https://github.com/yourusername/Nursura.git cd Nursura
-
Start the Ollama API server: Follow the Ollama API documentation to ensure the server is running on
http://localhost:11434
. -
Open the project:
- Simply open the
index.html
file in your browser.
- Simply open the
- Open the chat interface in your browser.
- Type a message in the input field.
- Press "Enter" or click the "Send" button to submit the message.
- Receive an AI-generated response in real time.
Nursura/
├── index.html # Main HTML file
├── README.md # Project documentation
├── tailwind.min.css # TailwindCSS stylesheet (via CDN)
└── script.js # Main JavaScript logic (embedded in index.html)
- HTML5: Structuring the chat interface.
- CSS3 (TailwindCSS): Styling the application for responsive and modern design.
- JavaScript: Handling user interactions and integrating with the Ollama API.
- Ollama API: Generating AI responses using the Mistral model.
- Base URL:
http://localhost:11434
- Endpoint:
/api/generate
- Request Body:
{ "model": "mistral", "prompt": "Your prompt here", "stream": false }
- Change Assistant's Tone: Update the
prompt
in thesendMessage()
function inindex.html
to fit different personas or use cases. - Styling Adjustments: Modify the TailwindCSS classes in the
index.html
file or use a custom stylesheet.
- Ensure the Ollama API server is running locally and accessible at the specified base URL.
- Check your browser's console for any error messages.
- Verify your internet connection if TailwindCSS doesn't load correctly (via CDN).
- Fork the repository.
- Create your feature branch:
git checkout -b feature/YourFeature
- Commit your changes:
git commit -m 'Add YourFeature'
- Push to the branch:
git push origin feature/YourFeature
- Open a pull request.
This project is licensed under the MIT License. See the LICENSE
file for details.