Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 9 additions & 0 deletions client-python/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ ap_client/models/message_any_block.py
ap_client/models/message_text_block.py
ap_client/models/run.py
ap_client/models/run_create.py
ap_client/models/run_resume.py
ap_client/models/run_resume_stream.py
ap_client/models/run_search_request.py
ap_client/models/run_status.py
ap_client/models/run_stream.py
Expand All @@ -40,6 +42,7 @@ ap_client/models/store_list_namespaces_request.py
ap_client/models/store_put_request.py
ap_client/models/store_search_request.py
ap_client/models/stream_mode.py
ap_client/models/stream_mode1.py
ap_client/models/thread.py
ap_client/models/thread_checkpoint.py
ap_client/models/thread_create.py
Expand All @@ -65,6 +68,8 @@ docs/MessageAnyBlock.md
docs/MessageTextBlock.md
docs/Run.md
docs/RunCreate.md
docs/RunResume.md
docs/RunResumeStream.md
docs/RunSearchRequest.md
docs/RunStatus.md
docs/RunStream.md
Expand All @@ -78,6 +83,7 @@ docs/StoreListNamespacesRequest.md
docs/StorePutRequest.md
docs/StoreSearchRequest.md
docs/StreamMode.md
docs/StreamMode1.md
docs/Thread.md
docs/ThreadCheckpoint.md
docs/ThreadCreate.md
Expand All @@ -93,4 +99,7 @@ setup.cfg
setup.py
test-requirements.txt
test/__init__.py
test/test_run_resume.py
test/test_run_resume_stream.py
test/test_stream_mode1.py
tox.ini
6 changes: 6 additions & 0 deletions client-python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ Class | Method | HTTP request | Description
*BackgroundRunsApi* | [**wait_run**](docs/BackgroundRunsApi.md#wait_run) | **GET** /runs/{run_id}/wait | Wait for Run output
*RunsApi* | [**create_and_stream_run**](docs/RunsApi.md#create_and_stream_run) | **POST** /runs/stream | Create Run, Stream Output
*RunsApi* | [**create_and_wait_run**](docs/RunsApi.md#create_and_wait_run) | **POST** /runs/wait | Create Run, Wait for Output
*RunsApi* | [**resume_and_stream_run**](docs/RunsApi.md#resume_and_stream_run) | **PATCH** /runs/resume/stream | Resume Run and Stream Output
*RunsApi* | [**resume_and_wait_run**](docs/RunsApi.md#resume_and_wait_run) | **PATCH** /runs/resume/wait | Resume Run and Wait
*RunsApi* | [**resume_run**](docs/RunsApi.md#resume_run) | **PATCH** /runs/resume | Resume Run (start execution from interrupted thread)
*StoreApi* | [**delete_item**](docs/StoreApi.md#delete_item) | **DELETE** /store/items | Delete Store Item
*StoreApi* | [**get_item**](docs/StoreApi.md#get_item) | **GET** /store/items | Get Store Item
*StoreApi* | [**list_namespaces**](docs/StoreApi.md#list_namespaces) | **POST** /store/namespaces | List namespaces
Expand Down Expand Up @@ -127,6 +130,8 @@ Class | Method | HTTP request | Description
- [MessageTextBlock](docs/MessageTextBlock.md)
- [Run](docs/Run.md)
- [RunCreate](docs/RunCreate.md)
- [RunResume](docs/RunResume.md)
- [RunResumeStream](docs/RunResumeStream.md)
- [RunSearchRequest](docs/RunSearchRequest.md)
- [RunStatus](docs/RunStatus.md)
- [RunStream](docs/RunStream.md)
Expand All @@ -138,6 +143,7 @@ Class | Method | HTTP request | Description
- [StorePutRequest](docs/StorePutRequest.md)
- [StoreSearchRequest](docs/StoreSearchRequest.md)
- [StreamMode](docs/StreamMode.md)
- [StreamMode1](docs/StreamMode1.md)
- [Thread](docs/Thread.md)
- [ThreadCheckpoint](docs/ThreadCheckpoint.md)
- [ThreadCreate](docs/ThreadCreate.md)
Expand Down
3 changes: 3 additions & 0 deletions client-python/ap_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
from ap_client.models.message_text_block import MessageTextBlock
from ap_client.models.run import Run
from ap_client.models.run_create import RunCreate
from ap_client.models.run_resume import RunResume
from ap_client.models.run_resume_stream import RunResumeStream
from ap_client.models.run_search_request import RunSearchRequest
from ap_client.models.run_status import RunStatus
from ap_client.models.run_stream import RunStream
Expand All @@ -59,6 +61,7 @@
from ap_client.models.store_put_request import StorePutRequest
from ap_client.models.store_search_request import StoreSearchRequest
from ap_client.models.stream_mode import StreamMode
from ap_client.models.stream_mode1 import StreamMode1
from ap_client.models.thread import Thread
from ap_client.models.thread_checkpoint import ThreadCheckpoint
from ap_client.models.thread_create import ThreadCreate
Expand Down
Loading
Loading