codegen-api-client
API for application developers
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.0
- Package version: 1.0.0
- Generator version: 7.12.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements.
Python 3.8+
Installation & Usage
uv sync
If the python package is hosted on a repository, you can install directly using:
uv pip install codegen-api-client
Then import the package:
import codegen_api_client
Tests
Execute pytest
to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import codegen_api_client
from codegen_api_client.rest import ApiException
from pprint import pprint
configuration = codegen_api_client.Configuration(
host = "http://localhost"
)
with codegen_api_client.ApiClient(configuration) as api_client:
api_instance = codegen_api_client.AgentsApi(api_client)
org_id = 56
create_agent_run_input = codegen_api_client.CreateAgentRunInput()
authorization = None
try:
api_response = api_instance.create_agent_run_v1_organizations_org_id_agent_run_post(org_id, create_agent_run_input, authorization=authorization)
print("The response of AgentsApi->create_agent_run_v1_organizations_org_id_agent_run_post:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AgentsApi->create_agent_run_v1_organizations_org_id_agent_run_post: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to http://localhost
Documentation For Models
Documentation For Authorization
Endpoints do not require authorization.
Author