Skip to content

Commit

Permalink
chore(sdks): Point to the latest sdk submodules
Browse files Browse the repository at this point in the history
Signed-off-by: Diwank Singh Tomer <[email protected]>
  • Loading branch information
creatorrr committed Nov 2, 2024
1 parent 8ba2b5f commit 1f59558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdks/python-sdk
Submodule python-sdk updated 58 files
+1 −1 .release-please-manifest.json
+1 −2 .stats.yml
+141 −0 CHANGELOG.md
+6 −6 README.md
+1 −1 api.md
+5 −7 pyproject.toml
+18 −14 requirements-dev.lock
+11 −4 requirements.lock
+3 −1 src/julep/__init__.py
+1 −1 src/julep/_base_client.py
+9 −9 src/julep/_client.py
+1 −1 src/julep/_compat.py
+5 −5 src/julep/_models.py
+4 −2 src/julep/_types.py
+1 −1 src/julep/_version.py
+81 −0 src/julep/lib/__init__.py
+25 −1 src/julep/resources/agents/docs.py
+120 −6 src/julep/resources/agents/tools.py
+107 −5 src/julep/resources/docs.py
+16 −16 src/julep/resources/sessions.py
+4 −5 src/julep/resources/tasks.py
+25 −1 src/julep/resources/users/docs.py
+0 −2 src/julep/types/__init__.py
+2 −0 src/julep/types/agents/doc_create_params.py
+13 −1 src/julep/types/agents/doc_search_params.py
+1 −1 src/julep/types/agents/doc_search_response.py
+504 −10 src/julep/types/agents/tool_create_params.py
+485 −9 src/julep/types/agents/tool_list_response.py
+505 −9 src/julep/types/agents/tool_patch_params.py
+504 −10 src/julep/types/agents/tool_update_params.py
+227 −13 src/julep/types/chat_response.py
+15 −4 src/julep/types/doc_embed_params.py
+1,224 −72 src/julep/types/entry.py
+2 −2 src/julep/types/session.py
+494 −6 src/julep/types/session_chat_params.py
+1 −1 src/julep/types/session_chat_response.py
+2 −2 src/julep/types/session_create_or_update_params.py
+2 −2 src/julep/types/session_create_params.py
+2 −2 src/julep/types/session_patch_params.py
+2 −2 src/julep/types/session_update_params.py
+3 −1 src/julep/types/snippet.py
+6,089 −935 src/julep/types/task.py
+6,280 −961 src/julep/types/task_create_or_update_params.py
+6,280 −961 src/julep/types/task_create_params.py
+0 −97 src/julep/types/tool.py
+0 −95 src/julep/types/tool_param.py
+2 −0 src/julep/types/users/doc_create_params.py
+13 −1 src/julep/types/users/doc_search_params.py
+1 −1 src/julep/types/users/doc_search_response.py
+14 −0 tests/api_resources/agents/test_docs.py
+124 −4 tests/api_resources/agents/test_tools.py
+106 −12 tests/api_resources/test_docs.py
+116 −14 tests/api_resources/test_sessions.py
+258 −34 tests/api_resources/test_tasks.py
+14 −0 tests/api_resources/users/test_docs.py
+8 −6 tests/conftest.py
+25 −10 tests/test_client.py
+1 −1 tests/test_models.py

0 comments on commit 1f59558

Please sign in to comment.