2024-04-10 17:04:04 +07:00
## 1. Add your AI models
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00

2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
- The tool uses Large Language Model (LLMs) to perform various tasks in a QA pipeline.
So, you need to provide the application with access to the LLMs you want
to use.
2025-01-13 07:42:47 +07:00
- You only need to provide at least one. However, it is recommended that you include all the LLMs
2024-04-10 17:04:04 +07:00
that you have access to, you will be able to switch between them while using the
application.
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
To add a model:
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
1. Navigate to the `Resources` tab.
2024-04-11 19:41:45 +07:00
2. Select the `LLMs` sub-tab.
3. Select the `Add` sub-tab.
2024-04-10 17:04:04 +07:00
4. Config the model to add:
- Give it a name.
- Pick a vendor/provider (e.g. `ChatOpenAI` ).
- Provide the specifications.
2024-04-11 19:41:45 +07:00
- (Optional) Set the model as default.
5. Click `Add` to add the model.
6. Select `Embedding Models` sub-tab and repeat the step 3 to 5 to add an embedding model.
2024-03-29 19:47:03 +07:00
2024-04-11 19:41:45 +07:00
< details markdown >
2024-03-29 19:47:03 +07:00
2024-04-11 19:41:45 +07:00
< summary > (Optional) Configure model via the .env file< / summary >
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
Alternatively, you can configure the models via the `.env` file with the information needed to connect to the LLMs. This file is located in
the folder of the application. If you don't see it, you can create one.
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
Currently, the following providers are supported:
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
### OpenAI
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
In the `.env` file, set the `OPENAI_API_KEY` variable with your OpenAI API key in order
to enable access to OpenAI's models. There are other variables that can be modified,
please feel free to edit them to fit your case. Otherwise, the default parameter should
work for most people.
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
```shell
OPENAI_API_BASE=https://api.openai.com/v1
OPENAI_API_KEY=< your OpenAI API key here >
OPENAI_CHAT_MODEL=gpt-3.5-turbo
OPENAI_EMBEDDINGS_MODEL=text-embedding-ada-002
```
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
### Azure OpenAI
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
For OpenAI models via Azure platform, you need to provide your Azure endpoint and API
key. Your might also need to provide your developments' name for the chat model and the
embedding model depending on how you set up Azure development.
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
```shell
AZURE_OPENAI_ENDPOINT=
AZURE_OPENAI_API_KEY=
2024-05-15 17:22:41 +07:00
OPENAI_API_VERSION=2024-02-15-preview # could be different for you
AZURE_OPENAI_CHAT_DEPLOYMENT=gpt-35-turbo # change to your deployment name
AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT=text-embedding-ada-002 # change to your deployment name
2024-04-10 17:04:04 +07:00
```
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
### Local models
2024-03-29 19:47:03 +07:00
2024-08-26 08:50:37 +07:00
Pros:
2024-04-10 17:04:04 +07:00
- Privacy. Your documents will be stored and process locally.
- Choices. There are a wide range of LLMs in terms of size, domain, language to choose
from.
- Cost. It's free.
2024-08-26 08:50:37 +07:00
Cons:
2024-04-10 17:04:04 +07:00
- Quality. Local models are much smaller and thus have lower generative quality than
paid APIs.
- Speed. Local models are deployed using your machine so the processing speed is
limited by your hardware.
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
#### Find and download a LLM
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
You can search and download a LLM to be ran locally from the [Hugging Face
Hub](https://huggingface.co/models). Currently, these model formats are supported:
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
- GGUF
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
You should choose a model whose size is less than your device's memory and should leave
about 2 GB. For example, if you have 16 GB of RAM in total, of which 12 GB is available,
then you should choose a model that take up at most 10 GB of RAM. Bigger models tend to
give better generation but also take more processing time.
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
Here are some recommendations and their size in memory:
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
- [Qwen1.5-1.8B-Chat-GGUF ](https://huggingface.co/Qwen/Qwen1.5-1.8B-Chat-GGUF/resolve/main/qwen1_5-1_8b-chat-q8_0.gguf?download=true ):
around 2 GB
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
#### Enable local models
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
To add a local model to the model pool, set the `LOCAL_MODEL` variable in the `.env`
file to the path of the model file.
2024-03-29 19:47:03 +07:00
2024-04-10 17:04:04 +07:00
```shell
LOCAL_MODEL=< full path to your model file >
```
Here is how to get the full path of your model file:
- On Windows 11: right click the file and select `Copy as Path` .
< / details >
2024-04-11 19:41:45 +07:00
## 2. Upload your documents
2024-04-10 17:04:04 +07:00

In order to do QA on your documents, you need to upload them to the application first.
Navigate to the `File Index` tab and you will see 2 sections:
1. File upload:
- Drag and drop your file to the UI or select it from your file system.
Then click `Upload and Index` .
- The application will take some time to process the file and show a message once it is done.
2. File list:
- This section shows the list of files that have been uploaded to the application and allows users to delete them.
2024-04-11 19:41:45 +07:00
## 3. Chat with your documents
2024-04-10 17:04:04 +07:00

Now navigate back to the `Chat` tab. The chat tab is divided into 3 regions:
1. Conversation Settings Panel
- Here you can select, create, rename, and delete conversations.
- By default, a new conversation is created automatically if no conversation is selected.
2024-04-16 18:43:56 +07:00
- Below that you have the file index, where you can choose whether to disable, select all files, or select which files to retrieve references from.
- If you choose "Disabled", no files will be considered as context during chat.
- If you choose "Search All", all files will be considered during chat.
- If you choose "Select", a dropdown will appear for you to select the
files to be considered during chat. If no files are selected, then no
files will be considered during chat.
2024-04-10 17:04:04 +07:00
2. Chat Panel
- This is where you can chat with the chatbot.
2024-08-26 08:50:37 +07:00
3. Information Panel

- Supporting information such as the retrieved evidence and reference will be
displayed here.
- Direct citation for the answer produced by the LLM is highlighted.
- The confidence score of the answer and relevant scores of evidences are displayed to quickly assess the quality of the answer and retrieved content.
- Meaning of the score displayed:
- **Answer confidence**: answer confidence level from the LLM model.
- **Relevance score**: overall relevant score between evidence and user question.
- **Vectorstore score**: relevant score from vector embedding similarity calculation (show `full-text search` if retrieved from full-text search DB).
- **LLM relevant score**: relevant score from LLM model (which judge relevancy between question and evidence using specific prompt).
- **Reranking score**: relevant score from Cohere [reranking model ](https://cohere.com/rerank ).
Generally, the score quality is `LLM relevant score` > `Reranking score` > `Vectorscore` .
By default, overall relevance score is taken directly from LLM relevant score. Evidences are sorted based on their overall relevance score and whether they have citation or not.