From ce8bb9d24bedff3a0a912c6b9b9502fe5f09f87e Mon Sep 17 00:00:00 2001 From: Sanjay Nadhavajhala Date: Tue, 13 Feb 2024 01:56:36 -0800 Subject: [PATCH] update docs. remove csv from approved rag file types --- docs/docs/using_rubra/assistants.md | 9 ++++++++- .../app/pages/2_\360\237\244\226_Explore_Assistants.py" | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/docs/using_rubra/assistants.md b/docs/docs/using_rubra/assistants.md index 944b14d..808fb6a 100644 --- a/docs/docs/using_rubra/assistants.md +++ b/docs/docs/using_rubra/assistants.md @@ -27,7 +27,14 @@ To create a new assistant, click on the "Create New Assistant" button. This will You can also enable additional tools for your assistant: - **Browser**: Enable this to allow your assistant search and open links. -- **Knowledge**: You can upload files here. If you do, conversations with your assistant may include file contents. Files can be downloaded when Code Interpreter is enabled. This feature uses automated Retrieval-Augmented Generation (RAG) to enhance the assistant's responses with information from the uploaded files. +- **Knowledge**: You can upload files here. If you do, conversations with your assistant may include file contents. This feature uses automated Retrieval-Augmented Generation (RAG) to enhance the assistant's responses with information from the uploaded files. Limited to the following file types: + - `.pdf` + - `.json` + - `.txt` + - `.md` + - `.html` + - `.log` + - `.rtf` Once you have filled in all the details, click on "Create Assistant" to create your assistant. You will be able to chat with this assistant in Rubra chat. diff --git "a/services/frontend/ui/app/pages/2_\360\237\244\226_Explore_Assistants.py" "b/services/frontend/ui/app/pages/2_\360\237\244\226_Explore_Assistants.py" index dfb6bff..304c69e 100644 --- "a/services/frontend/ui/app/pages/2_\360\237\244\226_Explore_Assistants.py" +++ "b/services/frontend/ui/app/pages/2_\360\237\244\226_Explore_Assistants.py" @@ -144,7 +144,7 @@ def main(): uploaded_files = st.file_uploader( "Knowledge", accept_multiple_files=True, - type=[".pdf", ".txt", ".json", ".csv", ".md", ".html", ".log", ".rtf"], + type=[".pdf", ".txt", ".json", ".md", ".html", ".log", ".rtf"], help="If you upload files for knowledge retrieval, conversations with your Assistant may include file contents. Upon Assistant creation, the file contents will be indexed for retrieval - this may take a moment.", )