Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/rag_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,15 @@ solr:
# Set to false to use reference_url (online mode)
```

**Query Request Example:**
```
curl -sX POST http://localhost:8080/v1/query \
-H "Content-Type: application/json" \
-d '{"query" : "how do I secure a nodejs application with keycloak?", "no_tools":true}' | jq .
```
Note: Solr does not currently work with RAG tools. You will need to specify "no_tools": true in request.


**Query Processing:**

1. When Solr is enabled, queries use the `portal-rag` vector store
Expand Down
Loading