Official client libraries for Python, TypeScript, Go, and Java
Official Python client for Agentic Core, Neural Grid, and Sentinel APIs.
pip install meertech-sdkFully typed TypeScript/JavaScript client with Node.js and browser support.
npm install @meertech/sdkHigh-performance Go client with context support and connection pooling.
go get github.com/meertech/go-sdkGet started with our SDKs in minutes. Here's a quick example of creating and running an agent.
from meertech import AgenticCore
# Initialize the client
client = AgenticCore(api_key="your-api-key")
# Create an autonomous agent
agent = client.agents.create(
name="research-agent",
model="agentic-core-v2",
instructions="You are a research assistant..."
)
# Run the agent
result = await agent.run(
task="Analyze Q4 market trends",
tools=["web_search", "data_analysis"]
)
print(result.output)