Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

final changes #48

Merged
merged 2 commits into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
command R addition
  • Loading branch information
Madhuvod committed Dec 15, 2024
commit a3dfdc0e7044283b602c73876026a5e58553251a
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