Ollama Integration Service
List all available Ollama models
List all chats
Create a new chat with query parameters
Create a new chat with JSON body
Send a message to a chat
curl "https://ai.dhurgham.dev/api/chats?title=Test&message=Hello&model=llama3.2"
curl -X POST "https://ai.dhurgham.dev/api/chats" \
-H "Content-Type: application/json" \
-d '{"title":"Test","message":"Hello","model":"llama3.2"}'
curl "https://ai.dhurgham.dev/api/models"