-
Notifications
You must be signed in to change notification settings - Fork 1
/
09-Rag.http
36 lines (23 loc) · 859 Bytes
/
09-Rag.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
## RagController.java
### OLLAMA - Load documents
POST http://127.0.0.1:8080/chat/rag/ollama/load
### OLLAMA - Chat with documents
POST http://127.0.0.1:8080/chat/rag/ollama/doc
Accept: text/plain
Content-Type: application/x-www-form-urlencoded
Can you summarise the story of Elara in few sentences?
### OLLAMA - Chat with documents
POST http://127.0.0.1:8080/chat/rag/ollama/doc
Accept: text/plain
Content-Type: application/x-www-form-urlencoded
Tell me about the Alexandria story
### OPENAI - Load documents
POST http://127.0.0.1:8080/chat/rag/openai/load
### OPENAI - Chat with documents
POST http://127.0.0.1:8080/chat/rag/openai/doc
Accept: text/plain
Can you summarise the story of Elara in few sentences?
### OPENAI - Chat with documents
POST http://127.0.0.1:8080/chat/rag/openai/doc
Accept: text/plain
Tell me about the Alexandria story