command R addition

This commit is contained in:
Madhu
2024-12-15 09:16:43 +05:30
parent f83854fc3d
commit a3dfdc0e70
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
# RAG Agent with Cohere
# RAG Agent with Cohere ⌘R
A RAG Agentic system built with Cohere's new model Command-r7b-12-2024, Qdrant for vector storage, Langchain for RAG and LangGraph for orchestration. This application allows users to upload documents, ask questions about them, and get AI-powered responses with fallback to web search when needed.

View File

@@ -247,7 +247,7 @@ def post_process(answer, sources):
formatted_sources.append(formatted_source)
return answer, formatted_sources
st.title("RAG Agent with Cohere 🤖")
st.title("RAG Agent with Cohere ⌘R")
uploaded_file = st.file_uploader("Choose a PDF or Image File", type=["pdf", "jpg", "jpeg"])