-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(settings): Update default model to TheBloke/Mistral-7B-Instruct-…
…v0.2-GGUF (#1415) * Update LlamaCPP dependency * Default to TheBloke/Mistral-7B-Instruct-v0.2-GGUF * Fix API docs
- Loading branch information
Showing
5 changed files
with
1,433 additions
and
1,233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
# API Reference | ||
|
||
The API is divided in two logical blocks: | ||
|
||
1. High-level API, abstracting all the complexity of a RAG (Retrieval Augmented Generation) pipeline implementation: | ||
- Ingestion of documents: internally managing document parsing, splitting, metadata extraction, | ||
embedding generation and storage. | ||
- Chat & Completions using context from ingested documents: abstracting the retrieval of context, the prompt | ||
engineering and the response generation. | ||
|
||
2. Low-level API, allowing advanced users to implement their own complex pipelines: | ||
- Embeddings generation: based on a piece of text. | ||
- Contextual chunks retrieval: given a query, returns the most relevant chunks of text from the ingested | ||
documents. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.