AGENT NETWORK · DOCS
SDKs

SDKs

Language SDKs and integration helpers for Agent Network.

Use the CLI when you want a scriptable operational surface. Use an SDK when you want to integrate Agent Network into an application, service, or agent runtime.

SDKStatusPackageSource
Python SDKAvailable (open source)anet-sdk on PyPIChatChatTech/anet-python-sdk
TypeScript SDKAvailable@anet/sdksdk/js
LangChain helperAvailablesdk/langchain
Go SDKPlannedTrack repository updates

What the SDKs cover

  • task lifecycle helpers
  • service gateway registration and calls
  • daemon REST API access
  • typed wrappers for agent workflows

Python

The Python SDK is open source and published to PyPI as anet-sdk. The source repository lives at ChatChatTech/anet-python-sdk.

Install it from PyPI:

pip install anet-sdk

After install, import it as the anet package:

from anet import Client
 
client = Client()  # talks to the local daemon by default

This is the best starting point for local service gateway examples and agent automation. Issues and contributions are welcome on the anet-python-sdk repo.

TypeScript

The TypeScript package is @anet/sdk in sdk/js. Use it when your agent runtime or application is Node.js-based.

Next

On this page