mentortools/libs/: deep-agent-connector-0.1.0+2310166329 metadata and description

Simple index

HTTP connector library for MentorTools Deep Agent API

author MentorTools
author_email dev@mentortools.com
classifiers
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3.13
  • Programming Language :: Python :: 3.14
description_content_type text/markdown
requires_dist
  • aiohttp (>=3.13.0,<4.0.0)
  • http-tools-abm (>=6.5.77270,<7.0.0)
  • pydantic (>=2.0.0,<3.0.0)
requires_python >=3.11,<4.0
File Tox results History
deep_agent_connector-0.1.0+2310166329-py3-none-any.whl
Size
4 KB
Type
Python Wheel
Python
3
deep_agent_connector-0.1.0+2310166329.tar.gz
Size
3 KB
Type
Source

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())