Getting Started

Authentication

Creates an authenticated session with AgentNeo

from agentneo import AgentNeo

# To authenticate an existing user
agent_session = AgentNeo(
    access_key=ACCESS_KEY,
    secret_key=SECRET_KEY,
    base_url=BASE_URL
)

# To authenticate a new user to get generate access_key and secret_key
agent_session = AgentNeo(
    email="[email protected]", #your email id
    base_url=BASE_URL
)

# For a registered used, to retrieve the access_key and secret_key
agent_session = AgentNeo(
    email="[email protected]", # already registered email id
    base_url=BASE_URL
)

Project Management

Allows creating projects

Trace Management

Enables tracing of agents, methods, and LangGraph graphs

Dataset Management

Allows creation and management of datasets

Experiment Management

Allows creation, execution, and analysis of experiments

Last updated

Was this helpful?