API Reference
Modules
This module provides an API endpoint to ask questions against a vector store using OpenAI's language model. |
|
This module provides API endpoints for managing text snippets and PDFs in a vector store. |
|
This module defines the authentication routes for the FastAPI application, specifically handling the generation of access tokens for users. |
|
This module provides utility functions to handle vector stores using Chroma. |
cmd-Methods
Endpoint to ask a question against a vector store. |
data-Methods
Endpoint to add text snippets to a vector store. |
|
Endpoint to add pdfs to a vector store. |
|
Endpoint to get text snippets from specified vector store. |
|
Endpoint to get pdf name from specified vector store. |
|
Endpoint to get all present database names. |
|
Endpoint to update text snippets. |
|
Endpoint to delete text snippets. |
|
Endpoint to delete all text snippets from the specified pdfs. |
|
Endpoint to delete all databases. |
auth-Methods
- # util.v1.auth.fake_users_db
util.v1.auth.verify_password util.v1.auth.get_password_hash util.v1.auth.get_user util.v1.auth.authenticate_user util.v1.auth.create_access_token util.v1.auth.get_current_user util.v1.auth.get_current_active_user
chroma_handler-Methods
Create a vector store for a given identifier. |
|
Retrieve the vector store for a given identifier, creating it if necessary. |
|
Add texts to the vector store for a given identifier. |
|
Add PDFs to the vector store for a given identifier. |
|
Retrieve texts from the vector store for a given identifier. |
|
Retrieve PDF filenames from the vector store for a given identifier. |
|
Retrieve all database identifiers. |
|
Update texts in the vector store for a given identifier. |
|
Delete texts from the vector store for a given identifier. |
|
Delete PDFs from the vector store for a given identifier. |
|
Delete databases for given identifiers. |
|
Build a question template with snippets from the vector store. |
Types
Modules
This module contains models and enums used for the command API. |
|
This module contains Pydantic models for handling data requests and responses related to texts and PDFs in the fRAGme application. |
|
cmd-Models
Enum representing the role in a chat. |
|
Model representing an action in a chat. |
|
Model representing a question with its context and parameters. |
|
Model representing a request to ask a question. |
|
Model representing a response to the asked question. |
data-Models
Model representing a text entry with associated metadata. |
|
Model representing an update to a text entry. |
|
Request model for adding multiple text entries. |
|
Response model indicating the status of adding text entries. |
|
Response model indicating the status of adding PDF entries. |
|
Request model for retrieving specific text entries by their IDs. |
|
Response model containing the requested text entries. |
|
Request model for retrieving PDFs associated with an identifier. |
|
Response model containing the requested PDF names. |
|
Response model containing the list of available databases. |
|
Request model for uploading updates to text entries. |
|
Response model indicating the status of uploading text updates. |
|
Request model for deleting specific text entries by their IDs. |
|
Response model indicating the status of deleting text entries. |
|
Request model for deleting specific PDFs by their names. |
|
Response model indicating the status of deleting PDF entries. |
|
Request model for deleting specific databases by their identifiers. |
|
Response model indicating the status of deleting databases. |
auth-Models
Represents an access token. |
|
Represents the data contained within a token. |
|
Represents a user in the system. |
|
Represents a user stored in the database. |