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

Remove csv agent abstraction #123

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
71bd1fe
feat: Support multi hop tool calling (#1)
Anirudh31415926535 Jun 10, 2024
f396ba6
chore: update replay tests (#2)
Anirudh31415926535 Jun 10, 2024
4aa8d11
feat: Add Anirudh31415926535 to codeowners
Anirudh31415926535 Jun 27, 2024
c6cb9d1
Merge remote-tracking branch 'public/main'
Anirudh31415926535 Jun 27, 2024
abf0f72
feat: add sql agent (#4)
Anirudh31415926535 Jul 8, 2024
8c1628d
chore(deps): bump certifi from 2024.6.2 to 2024.7.4 in /libs/cohere (#8)
dependabot[bot] Jul 8, 2024
50e3d60
feat: support streaming for tool calling (#7)
Anirudh31415926535 Jul 16, 2024
6276ef8
feat: add langchain standard unit tests (#10)
Anirudh31415926535 Jul 16, 2024
8b88bca
feat: add cohere csv agent (#3)
Anirudh31415926535 Jul 23, 2024
4b4d823
feat: make the model parameter compulsory for embedding and rerankers…
Anirudh31415926535 Jul 23, 2024
7d7d382
chore: fix bugs with csv and sql agent (#12)
Anirudh31415926535 Jul 26, 2024
ca0ce8f
feat: add load summarize chain (#11)
Anirudh31415926535 Jul 26, 2024
ade4e58
Merge remote-tracking branch 'public/main'
Anirudh31415926535 Aug 5, 2024
a6b2f47
fix: broken CohereEmbeddings integration (#13)
Anirudh31415926535 Aug 12, 2024
b07d72b
feat: fix embed documents bug (#14)
Anirudh31415926535 Aug 12, 2024
4907caf
fix bug in chat request (#15)
Anirudh31415926535 Aug 19, 2024
63db07b
fix: aembed throws key error (#16)
Anirudh31415926535 Aug 19, 2024
ff8c5d3
Merge remote-tracking branch 'public/main' into harry/merge-with-upst…
harry-cohere Aug 22, 2024
c61d9a3
Merge pull request #17 from cohere-ai/harry/merge-with-upstream
harry-cohere Aug 22, 2024
1a7652b
Merge remote-tracking branch 'public/main'
harry-cohere Nov 4, 2024
3c2f52a
Merge remote-tracking branch 'public/main'
Anirudh31415926535 Nov 20, 2024
321eba3
fix: Incorrect tool call formatting issue (#22)
Anirudh31415926535 Nov 20, 2024
231c708
Merge remote-tracking branch 'public/main'
harry-cohere Nov 21, 2024
6d0783f
Merge remote-tracking branch 'public/main'
harry-cohere Nov 26, 2024
57500b0
Merge remote-tracking branch 'public/main'
Anirudh31415926535 Dec 18, 2024
8cf6012
Merge remote-tracking branch 'public/main'
harry-cohere Jan 15, 2025
ad2668f
Deprecate create_csv_agent (#27)
Anirudh31415926535 Jan 21, 2025
a49ae0b
feat: Add json mode with_structured_output (#24)
Anirudh31415926535 Jan 21, 2025
2426566
Remove the create_csv_agent abstraction (#25)
Anirudh31415926535 Jan 22, 2025
db5a66c
Merge branch 'main' into anirudh.shrinivason/remove-csv-agent-abstrac…
Anirudh31415926535 Jan 22, 2025
71905fe
Update poetry lock
Anirudh31415926535 Jan 22, 2025
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
2 changes: 0 additions & 2 deletions libs/cohere/langchain_cohere/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from langchain_cohere.chat_models import ChatCohere
from langchain_cohere.cohere_agent import create_cohere_tools_agent
from langchain_cohere.common import CohereCitation
from langchain_cohere.csv_agent.agent import create_csv_agent
from langchain_cohere.embeddings import CohereEmbeddings
from langchain_cohere.rag_retrievers import CohereRagRetriever
from langchain_cohere.react_multi_hop.agent import create_cohere_react_agent
Expand All @@ -17,7 +16,6 @@
"CohereRerank",
"create_cohere_tools_agent",
"create_cohere_react_agent",
"create_csv_agent",
"create_sql_agent",
"load_summarize_chain",
]
Empty file.
203 changes: 0 additions & 203 deletions libs/cohere/langchain_cohere/csv_agent/agent.py

This file was deleted.

34 changes: 0 additions & 34 deletions libs/cohere/langchain_cohere/csv_agent/prompts.py

This file was deleted.

84 changes: 0 additions & 84 deletions libs/cohere/langchain_cohere/csv_agent/tools.py

This file was deleted.

Loading
Loading