-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from Snowflake-Labs/dependabot/submodules/dspy…
…-cba4a72 Bump dspy from `9ae8786` to `cba4a72`
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule dspy
updated
23 files
+178 −0 | docs/docs/deep-dive/retrieval_models_clients/ClarifaiRM.md | |
+13 −2 | docs/mkdocs.yml | |
+2 −1 | dspy/__init__.py | |
+3 −2 | dspy/adapters/__init__.py | |
+16 −10 | dspy/adapters/base.py | |
+43 −16 | dspy/adapters/chat_adapter.py | |
+338 −0 | dspy/adapters/json_adapter.py | |
+13 −12 | dspy/clients/lm.py | |
+22 −4 | dspy/functional/functional.py | |
+2 −1 | dspy/predict/predict.py | |
+80 −111 | dspy/predict/react.py | |
+4 −1 | dspy/retrieve/retrieve.py | |
+34 −24 | dspy/teleprompt/bootstrap.py | |
+14 −9 | dspy/teleprompt/utils.py | |
+3 −3 | dspy/utils/__init__.py | |
+53 −59 | dspy/utils/callback.py | |
+1,561 −1,343 | poetry.lock | |
+3 −2 | pyproject.toml | |
+1 −0 | requirements.txt | |
+18 −16 | tests/callback/test_callback.py | |
+56 −56 | tests/dsp_LM/functional/test_functional.py | |
+148 −148 | tests/dsp_LM/predict/test_react.py | |
+118 −118 | tests/predict/test_react.py |