mentortools/libs/: deep-agent-connector-0.1.0+2310166329 metadata and description
HTTP connector library for MentorTools Deep Agent API
| author | MentorTools |
| author_email | dev@mentortools.com |
| classifiers |
|
| description_content_type | text/markdown |
| requires_dist |
|
| requires_python | >=3.11,<4.0 |
| File | Tox results | History |
|---|---|---|
deep_agent_connector-0.1.0+2310166329-py3-none-any.whl
|
|
|
deep_agent_connector-0.1.0+2310166329.tar.gz
|
|
Deep Agent Connector Library
This folder follows the corporate team_member_server blueprint pattern: an installable Python
package that acts as an HTTP client for this service.
Install (from source)
cd connector_library
poetry install
Usage
import asyncio
from deep_agent_connector.deep_agent_connector import DeepAgentConnector
async def main() -> None:
async with DeepAgentConnector(base_url="http://localhost:8000", api_key=None) as client:
health = await client.health()
run = await client.create_run(user_token="u-1", message="Hello", chat_id=123, chat_session_id=456, chat_member_id=789)
print(health)
print(run.run_id)
asyncio.run(main())