Skip to content

Commit

Permalink
command R addition
Browse files Browse the repository at this point in the history
  • Loading branch information
Madhuvod committed Dec 15, 2024
1 parent f83854f commit a3dfdc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rag_tutorials/rag_agent_cohere/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion rag_tutorials/rag_agent_cohere/rag_agent_cohere.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])

Expand Down

0 comments on commit a3dfdc0

Please sign in to comment.