-
Clone and run:
./mvnw spring-boot:run
-
Swagger UI:
http://localhost:8888/swagger-ui/index.html -
Test API:
# Chat test curl "http://localhost:8888/api/chat/test?message=Hello!" # Chat with conversation curl -X POST http://localhost:8888/api/chat/message \ -H "Content-Type: application/json" \ -d '{"message": "How are you?", "conversationId": "test-123"}'
POST /api/chat/message- Send message to chat conversationGET /api/chat/test- Test messageDELETE /api/chat/conversation/{id}- Delete conversationGET /api/chat/conversation/{id}/history- Get conversation history