Skip to content

Commit

Permalink
changess
Browse files Browse the repository at this point in the history
  • Loading branch information
Madhuvod committed Dec 15, 2024
1 parent a3dfdc0 commit dec968b
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -219,7 +219,7 @@ def process_query(vectorstore, query) -> tuple[str, list]:
last_message = response["messages"][-1]
answer = last_message.content if hasattr(last_message, 'content') else str(last_message)

return f"""Comprehensive Research Results:
return f"""Web Search Result:
{answer}
""", []

Expand Down

0 comments on commit dec968b

Please sign in to comment.