Chat
Chat endpoint using LiteLLM with GitHub Copilot and optional RAG.
This endpoint requires the user to be authenticated with both Extralit and GitHub (via the /auth/github/login flow).
If dataset_id is provided, the endpoint will perform RAG retrieval:
- Generate embedding for the user's query
- Search for relevant documents in the dataset
- Inject retrieved context into the system prompt
Args: request: Chat request with model, messages, and optional dataset_id current_user: Authenticated Extralit user db: Database session (injected for RAG) search_engine: Search engine instance (injected for RAG)
Returns: StreamingResponse with chat completion
Raises: HTTPException: If user is not authenticated with GitHub
Request body
Response
A text/event-stream of data: frames. Each frame carries either a content token, the literal [DONE] terminator, or a JSON object with an error key.
Changes
Changed in 2 of the 7 revisions of this API.12
- ▲
removed the media type
application/jsonfor the response with the status200response-media-type-removed
- ○
added the media type
text/event-streamfor the response with the status200response-media-type-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲
- ○
endpoint added
endpoint-added
- ○