Skip to content
Open
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
12 changes: 12 additions & 0 deletions client-python/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,23 @@ ap_client/models/config.py
ap_client/models/content.py
ap_client/models/content_one_of_inner.py
ap_client/models/error_response.py
ap_client/models/goto.py
ap_client/models/input.py
ap_client/models/item.py
ap_client/models/message.py
ap_client/models/message_any_block.py
ap_client/models/message_text_block.py
ap_client/models/resume.py
ap_client/models/run.py
ap_client/models/run_create.py
ap_client/models/run_search_request.py
ap_client/models/run_status.py
ap_client/models/run_update.py
ap_client/models/run_update_command.py
ap_client/models/run_wait_response.py
ap_client/models/search_agents_request.py
ap_client/models/search_items_response.py
ap_client/models/send.py
ap_client/models/store_delete_request.py
ap_client/models/store_list_namespaces_request.py
ap_client/models/store_put_request.py
Expand All @@ -46,6 +51,7 @@ ap_client/models/thread_patch.py
ap_client/models/thread_search_request.py
ap_client/models/thread_state.py
ap_client/models/thread_status.py
ap_client/models/update.py
ap_client/py.typed
ap_client/rest.py
docs/Agent.md
Expand All @@ -57,19 +63,24 @@ docs/Config.md
docs/Content.md
docs/ContentOneOfInner.md
docs/ErrorResponse.md
docs/Goto.md
docs/Input.md
docs/Item.md
docs/Message.md
docs/MessageAnyBlock.md
docs/MessageTextBlock.md
docs/Resume.md
docs/Run.md
docs/RunCreate.md
docs/RunSearchRequest.md
docs/RunStatus.md
docs/RunUpdate.md
docs/RunUpdateCommand.md
docs/RunWaitResponse.md
docs/RunsApi.md
docs/SearchAgentsRequest.md
docs/SearchItemsResponse.md
docs/Send.md
docs/StoreApi.md
docs/StoreDeleteRequest.md
docs/StoreListNamespacesRequest.md
Expand All @@ -84,6 +95,7 @@ docs/ThreadSearchRequest.md
docs/ThreadState.md
docs/ThreadStatus.md
docs/ThreadsApi.md
docs/Update.md
git_push.sh
pyproject.toml
requirements.txt
Expand Down
8 changes: 8 additions & 0 deletions client-python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ 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* | [**update_and_stream_run**](docs/RunsApi.md#update_and_stream_run) | **POST** /runs/{run_id}/stream | Update Run, Stream Output
*RunsApi* | [**update_and_wait_run**](docs/RunsApi.md#update_and_wait_run) | **POST** /runs/{run_id}/wait | Update Run, Wait for Output
*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 All @@ -120,18 +122,23 @@ Class | Method | HTTP request | Description
- [Content](docs/Content.md)
- [ContentOneOfInner](docs/ContentOneOfInner.md)
- [ErrorResponse](docs/ErrorResponse.md)
- [Goto](docs/Goto.md)
- [Input](docs/Input.md)
- [Item](docs/Item.md)
- [Message](docs/Message.md)
- [MessageAnyBlock](docs/MessageAnyBlock.md)
- [MessageTextBlock](docs/MessageTextBlock.md)
- [Resume](docs/Resume.md)
- [Run](docs/Run.md)
- [RunCreate](docs/RunCreate.md)
- [RunSearchRequest](docs/RunSearchRequest.md)
- [RunStatus](docs/RunStatus.md)
- [RunUpdate](docs/RunUpdate.md)
- [RunUpdateCommand](docs/RunUpdateCommand.md)
- [RunWaitResponse](docs/RunWaitResponse.md)
- [SearchAgentsRequest](docs/SearchAgentsRequest.md)
- [SearchItemsResponse](docs/SearchItemsResponse.md)
- [Send](docs/Send.md)
- [StoreDeleteRequest](docs/StoreDeleteRequest.md)
- [StoreListNamespacesRequest](docs/StoreListNamespacesRequest.md)
- [StorePutRequest](docs/StorePutRequest.md)
Expand All @@ -144,6 +151,7 @@ Class | Method | HTTP request | Description
- [ThreadSearchRequest](docs/ThreadSearchRequest.md)
- [ThreadState](docs/ThreadState.md)
- [ThreadStatus](docs/ThreadStatus.md)
- [Update](docs/Update.md)


<a id="documentation-for-authorization"></a>
Expand Down
6 changes: 6 additions & 0 deletions client-python/ap_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,23 @@
from ap_client.models.content import Content
from ap_client.models.content_one_of_inner import ContentOneOfInner
from ap_client.models.error_response import ErrorResponse
from ap_client.models.goto import Goto
from ap_client.models.input import Input
from ap_client.models.item import Item
from ap_client.models.message import Message
from ap_client.models.message_any_block import MessageAnyBlock
from ap_client.models.message_text_block import MessageTextBlock
from ap_client.models.resume import Resume
from ap_client.models.run import Run
from ap_client.models.run_create import RunCreate
from ap_client.models.run_search_request import RunSearchRequest
from ap_client.models.run_status import RunStatus
from ap_client.models.run_update import RunUpdate
from ap_client.models.run_update_command import RunUpdateCommand
from ap_client.models.run_wait_response import RunWaitResponse
from ap_client.models.search_agents_request import SearchAgentsRequest
from ap_client.models.search_items_response import SearchItemsResponse
from ap_client.models.send import Send
from ap_client.models.store_delete_request import StoreDeleteRequest
from ap_client.models.store_list_namespaces_request import StoreListNamespacesRequest
from ap_client.models.store_put_request import StorePutRequest
Expand All @@ -65,3 +70,4 @@
from ap_client.models.thread_search_request import ThreadSearchRequest
from ap_client.models.thread_state import ThreadState
from ap_client.models.thread_status import ThreadStatus
from ap_client.models.update import Update
Loading