A library for managing agents in Gen AI applications.
Project description
AIP Agents
Description
The core agent library for local execution in GL AIP (GDP Labs AI Agents Package). aip-agents is part of the GL AIP ecosystem:
aip-agents(this library) — The underlying agent library for local executionai-agent-platform— The platform that provides remote server/run capabilities (usesaip-agentsinternally)glaip-sdk— The SDK that end users use to run agents either locally (directly viaaip-agents) or on the remote server (viaai-agent-platform)
You can use aip-agents directly for local execution, or let glaip-sdk manage local vs remote mode for you. See the GL AIP overview for the full architecture.
Installation
Prerequisites
- Python 3.11 - 3.12 - Install here
- Pip (if using Pip) - Install here
- uv (if using uv) - Install here
- Git (if using Git) - Install here
- For git installation:
- Access to the GDP Labs SDK repository
1. Installation from the GDP Labs registry
This package is published to the internal GDP Labs registry. Ensure your uv/pip config includes the registry:
https://glsdk.gdplabs.id/gen-ai-internal/simple/.
Using pip
pip install aip-agents
Using uv
uv pip install aip-agents
2. Development Installation (Git)
For development purposes, you can install directly from the Git repository:
uv pip install "git+ssh://git@github.com/GDP-ADMIN/glaip-sdk.git#subdirectory=python/aip-agents"
3. Recommended: install via glaip-sdk for local mode
If you want local + remote compatibility, install the SDK's local extra instead:
pip install "glaip-sdk[local]"
Optional Extras
pip install "aip-agents[memory]"
pip install "aip-agents[privacy]"
Managing Dependencies
- Go to the
aip-agentsmodule root, e.g.cd python/aip-agents. - Run
uv sync --extra devto install theaip-agentsrequirements. - Run
uv lockif you change any dependency versions inpyproject.toml.
Contributing
Please refer to this Python Style Guide to get information about code style, documentation standard, and SCA that you need to use when contributing to this project
- Activate
pre-commithooks usingpre-commit install - Run
uv sync --extra devto install theaip-agentsrequirements. - Run
which pythonto get the path to be referenced at Visual Studio Code interpreter path (Ctrl+Shift+PorCmd+Shift+P) - Try running the unit test to see if it's working:
uv run pytest -s tests/unit_tests/
Hello World Examples
Prerequisites
- Python 3.11 - 3.12
- Install the package:
pip install aip-agents
- For OpenAI: Set your API key in the environment:
export OPENAI_API_KEY=your-openai-key
- For Google ADK: Set your API key in the environment:
export GOOGLE_API_KEY=your-google-api-key
Run the Hello World Examples
The example scripts are located in aip_agents/examples in the source repo. You can run them individually or use the run_all_examples.py script.
1. Running Individual Examples:
Navigate to the library's root directory (e.g., python/aip-agents if you cloned the repository).
LangGraph (OpenAI):
python aip_agents/examples/hello_world_langgraph.py
LangGraph with GL Connectors (OpenAI):
python aip_agents/examples/hello_world_langgraph_gl_connector_twitter.py
LangGraph Streaming (OpenAI):
python aip_agents/examples/hello_world_langgraph_stream.py
LangGraph Multi-Agent Coordinator (OpenAI):
python aip_agents/examples/hello_world_a2a_multi_agent_coordinator_server.py
Google ADK:
python aip_agents/examples/hello_world_google_adk.py
Google ADK Streaming:
python aip_agents/examples/hello_world_google_adk_stream.py
LangChain (OpenAI):
python aip_agents/examples/hello_world_langchain.py
LangChain Streaming (OpenAI):
python aip_agents/examples/hello_world_langchain_stream.py
HITL (Human-in-the-Loop) Approval Demo:
python aip_agents/examples/hitl_demo.py
2. Running MCP Examples
Prerequisites
Ensure you have set the environment variables for API keys:
export OPENAI_API_KEY="your-openai-key"
export GOOGLE_API_KEY="your-google-api-key"
For examples that use stateful MCP tools like browser automation, start the Playwright MCP server in a separate terminal:
npx @playwright/mcp@latest --headless --port 8931
Note: Use the --headless flag to run the server without a visible browser window, which is recommended if the browser is not installed yet to avoid failures. For using an actual (non-headless) browser, refer to the Playwright MCP documentation.
Local MCP Servers
For STDIO, SSE, and HTTP transports using local servers, open a terminal in the library root (python/aip-agents) and run:
- For STDIO:
uv run python aip_agents/examples/mcp_servers/mcp_server_stdio.py
- For SSE:
uv run python aip_agents/examples/mcp_servers/mcp_server_sse.py
- For HTTP:
uv run python aip_agents/examples/mcp_servers/mcp_server_http.py
Note: Start the appropriate server before running the client examples for that transport.
Running Examples
All examples are run from the library root using uv run python aip_agents/examples/<file>.py. Examples support OpenAI for LangGraph/LangChain and Google ADK where specified.
LangChain Examples
STDIO Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_langchain_mcp_stdio.py
- Streaming:
uv run python aip_agents/examples/hello_world_langchain_mcp_stdio_stream.py
SSE Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_langchain_mcp_sse.py
- Streaming:
uv run python aip_agents/examples/hello_world_langchain_mcp_sse_stream.py
HTTP Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_langchain_mcp_http.py
- Streaming:
uv run python aip_agents/examples/hello_world_langchain_mcp_http_stream.py
Google ADK Examples
STDIO Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_google_adk_mcp_stdio.py
- Streaming:
uv run python aip_agents/examples/hello_world_google_adk_mcp_stdio_stream.py
SSE Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_google_adk_mcp_sse.py
- Streaming:
uv run python aip_agents/examples/hello_world_google_adk_mcp_sse_stream.py
HTTP Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_google_adk_mcp_http.py
- Streaming:
uv run python aip_agents/examples/hello_world_google_adk_mcp_http_stream.py
LangGraph Examples (OpenAI)
STDIO Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_langgraph_mcp_stdio.py
- Streaming:
uv run python aip_agents/examples/hello_world_langgraph_mcp_stdio_stream.py
SSE Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_langgraph_mcp_sse.py
- Streaming:
uv run python aip_agents/examples/hello_world_langgraph_mcp_sse_stream.py
HTTP Transport
- Non-Streaming:
uv run python aip_agents/examples/hello_world_langgraph_mcp_http.py
- Streaming:
uv run python aip_agents/examples/hello_world_langgraph_mcp_http_stream.py
Multi-Server Example
This LangChain example uses multiple MCP servers: Playwright (for browser actions) and a random name generator (SSE transport) with persistent sessions across multiple arun calls.
- Start the Playwright server:
npx @playwright/mcp@latest --headless --port 8931
- In another terminal, start the Name Generator SSE server:
uv run python aip_agents/examples/mcp_servers/mcp_name.py
- Run the multi-server client example:
uv run python aip_agents/examples/hello_world_langchain_mcp_multi_server.py
3. Running Individual A2A Examples:
- Navigate to the library's root directory (e.g.,
libs/aip-agentsif you cloned the repository). - Open a new terminal and navigate to the
aip_agents/examplesdirectory to run the A2A server.
LangChain Server:
python hello_world_a2a_langchain_server.py
- Open a new terminal and navigate to the
aip_agents/examplesdirectory to run the A2A client.
LangChain Client:
python hello_world_a2a_langchain_client.py
LangChain Client Integrated with Agent Workflow:
python hello_world_a2a_langchain_client_agent.py
LangChain Client Streaming:
python hello_world_a2a_langchain_client_stream.py
Human-in-the-Loop (HITL) Approval
AIP Agents supports Human-in-the-Loop approval for tool execution, allowing human operators to review and approve high-risk tool calls before they execute.
Features
- Configurable Approval Policies: Set approval requirements per tool with customizable timeouts and behaviors
- Interactive CLI Prompts: Clear, structured prompts showing tool details and context
- Structured Logging: All approval decisions are logged with full metadata
- Timeout Handling: Configurable behavior when approval requests time out
- Non-blocking: Tools without HITL configuration execute normally
Quick Start
Configure HITL for specific tools in your agent:
from aip_agents.agent import LangGraphReactAgent
from aip_agents.agent.hitl.config import ToolApprovalConfig
# Create agent with tools
agent = LangGraphReactAgent(
name="My Agent",
tools=[send_email_tool, search_tool],
)
# Configure HITL via tool_configs
agent.tool_configs = {
"tool_configs": {
"send_email": {"hitl": {"timeout_seconds": 300}}
}
}
When the agent attempts to use the send_email tool, it will:
- Emit a pending approval event via
DeferredPromptHandler - Wait for
ApprovalManager.resolve_pending_request()to be called - Execute the tool only if approved
- Log the decision for audit purposes
Configuration Options
| Option | Type | Default | Description |
|---|---|---|---|
timeout_seconds |
int | 300 | Seconds to wait for operator input |
Logging
All HITL decisions are logged with structured data:
{
"event": "hitl_decision",
"tool": "send_email",
"decision": "approved",
"operator_input": "A",
"latency_ms": 2500,
"timestamp": "2025-09-25T10:15:00Z"
}
Demo
Run the interactive demo to see HITL in action:
python aip_agents/examples/hitl_demo.py
Architectural Notes
Memory Features
The library supports Mem0 as a memory backend for long-term conversation recall. Key features:
- Automatic persistence of user-agent interactions via
memory_backend="mem0". - Semantic search for relevant past conversations.
- New
built_in_mem0_searchtool for explicit recall by time period (e.g., "yesterday", "last week", "July 2025"). - Date range parsing for natural language time filters using
dateparser. - Conditional auto-augmentation (disabled by default to reduce noise; enable with
memory_auto_augment=True).
Mem0 Date Recall Example
Use the coordinator example with memory enabled:
uv run python aip_agents/examples/hello_world_a2a_mem0_coordinator_server.py
In client:
agent = LangGraphAgent(
name="client",
instruction="...",
model="gpt-4o-mini",
memory_backend="mem0",
)
Test recall: After some interactions, query "What did we discuss yesterday?" – agent uses tool to filter by created_at.
Deep Agents Middleware
The Deep Agents Middleware system provides composable components for enhancing agent capabilities with planning, context management, and custom lifecycle hooks.
Quick Start
Enable deep agent capabilities with a single parameter:
from aip_agents.agent.langgraph_react_agent import LangGraphReactAgent
# Enable planning + filesystem for complex multi-step tasks
agent = LangGraphReactAgent(
name="research_agent",
model="gpt-4",
planning=True, # Enables TodoListMiddleware for task decomposition
tools=[search_tool, calculator_tool],
)
Understanding Planning vs Filesystem
Important: planning and filesystem are completely independent features:
-
planning=True- Adds
write_todostool for task decomposition - Stores todos in in-memory dictionary (per thread_id)
- Does NOT use or require filesystem
- Perfect for breaking down complex tasks into steps
- Example: "Research quantum computing" → agent creates 5 subtasks
- Adds
-
filesystem=True- Adds file operation tools:
ls,read_file,write_file,edit_file,grep - Stores data in pluggable backend (default: InMemoryBackend)
- Does NOT interact with planning/todos
- Perfect for offloading large tool results to prevent context overflow
- Example: Web search returns 50KB → agent writes to
/research/results.txt
- Adds file operation tools:
-
Both together (
planning=True, filesystem=True)- Agent can plan tasks AND manage large data
- Todos stored separately in memory, files in backend
- Most powerful combination for complex research/analysis tasks
Planning Only
For task decomposition without filesystem:
agent = LangGraphReactAgent(
name="planner_agent",
model="gpt-4",
planning=True,
tools=[...],
)
Filesystem Only
For context offloading without planning:
agent = LangGraphReactAgent(
name="data_processor",
model="gpt-4",
filesystem=True, # Enables FilesystemMiddleware
tools=[...],
)
Custom Middleware
Create domain-specific middleware by implementing the AgentMiddleware protocol:
from aip_agents.middleware.base import AgentMiddleware, ModelRequest
class CustomMiddleware:
def __init__(self):
self.tools = [] # Add custom tools here
self.system_prompt_additions = "Custom instructions..."
def before_model(self, state: dict) -> dict:
# Hook executed before model invocation
return {}
def modify_model_request(self, request: ModelRequest, state: dict) -> ModelRequest:
# Modify the model request (add tools, adjust params, etc.)
return request
def after_model(self, state: dict) -> dict:
# Hook executed after model invocation
return {}
# COMPOSITION (not override): Custom middlewares EXTEND built-in middleware
agent = LangGraphReactAgent(
name="custom_agent",
model="gpt-4",
planning=True, # Adds TodoListMiddleware
filesystem=True, # Adds FilesystemMiddleware
middlewares=[CustomMiddleware()], # EXTENDS (doesn't replace) the above
tools=[...],
)
# Result: Agent has ALL THREE middleware active:
# 1. TodoListMiddleware (from planning=True)
# 2. FilesystemMiddleware (from filesystem=True)
# 3. CustomMiddleware (from middlewares parameter)
Key Points:
- ✅
middlewaresparameter extends (never replaces) auto-configured middleware - ✅
planningandfilesystemare independent - use either, both, or neither - ✅
planning=Truestores todos in memory (does NOT require filesystem) - ✅ Execution order: built-in middleware (planning, filesystem) → custom middlewares
- ✅ All hooks from all middleware execute in sequence
Common Combinations:
# Planning only (no filesystem)
# → Todos stored in memory, no file operations available
agent = LangGraphReactAgent(planning=True)
# → [TodoListMiddleware]
# Filesystem only (no planning)
# → File operations available, no todo planning
agent = LangGraphReactAgent(filesystem=True)
# → [FilesystemMiddleware]
# Both planning and filesystem
# → Todos in memory + file operations (most powerful combination)
agent = LangGraphReactAgent(planning=True, filesystem=True)
# → [TodoListMiddleware, FilesystemMiddleware]
# Custom only (no auto-configuration)
agent = LangGraphReactAgent(middlewares=[CustomMiddleware()])
# → [CustomMiddleware]
# All together (composition)
agent = LangGraphReactAgent(
planning=True,
filesystem=True,
middlewares=[CustomMiddleware()]
)
# → [TodoListMiddleware, FilesystemMiddleware, CustomMiddleware]
Advanced: Custom Storage Backend
Provide your own storage backend for filesystem operations:
from aip_agents.middleware.backends.protocol import BackendProtocol
from aip_agents.middleware.backends.memory import InMemoryBackend
# Use custom backend (e.g., PostgreSQL, S3, Redis)
custom_backend = MyCustomBackend()
agent = LangGraphReactAgent(
name="agent",
model="gpt-4",
filesystem=custom_backend, # Pass BackendProtocol instance
tools=[...],
)
Benefits
- Context Window Management: Automatically offload large tool results to files
- Task Decomposition: Break down complex multi-step tasks into trackable todos
- Incremental Development: Add capabilities gradually (filesystem first, then planning)
- Zero Breaking Changes: Existing agents work unchanged (backward compatible)
- Extensible: Compose custom middleware with built-in components
For detailed documentation, see docs/deep_agents_guide.md (coming soon).
Agent Interface (AgentInterface)
The aip_agents.agent.interface.AgentInterface class defines a standardized contract for all agent implementations within the AIP Agents ecosystem. It ensures that different agent types (e.g., LangGraph-based, Google ADK-based) expose a consistent set of methods for core operations.
Key methods defined by AgentInterface typically include:
arun(): For asynchronous execution of the agent that returns a final consolidated response.arun_stream(): For asynchronous execution that streams back partial responses or events from the agent.
By adhering to this interface, users can interact with various agents in a uniform way, making it easier to switch between or combine different agent technologies.
Inversion of Control (IoC) / Dependency Injection (DI)
The agent implementations (e.g., LangGraphAgent, GoogleADKAgent) utilize Dependency Injection. For instance, LangGraphAgent accepts an agent_executor (like one created by LangGraph's create_react_agent) in its constructor. Similarly, GoogleADKAgent accepts a native adk_native_agent. This allows the core execution logic to be provided externally, promoting flexibility and decoupling the agent wrapper from the specific instantiation details of its underlying engine.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aip_agents_binary-0.5.25b8.tar.gz.
File metadata
- Download URL: aip_agents_binary-0.5.25b8.tar.gz
- Upload date:
- Size: 462.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdb9b44ed28dce9a960577f2efa23e42d04873e45c0810cf28c8bbef5efee74e
|
|
| MD5 |
6411304a9b44422ddd1608515862882c
|
|
| BLAKE2b-256 |
4983e088e23f9f4913787887d8ec6b2eebe4c52364d6b57b689c2e97c15fa05b
|
Provenance
The following attestation bundles were made for aip_agents_binary-0.5.25b8.tar.gz:
Publisher:
build-binary.yml on GDP-ADMIN/glaip-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aip_agents_binary-0.5.25b8.tar.gz -
Subject digest:
fdb9b44ed28dce9a960577f2efa23e42d04873e45c0810cf28c8bbef5efee74e - Sigstore transparency entry: 858985273
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/glaip-sdk@60977103bff2f72bedaa5a6de192c7b5d5824207 -
Branch / Tag:
refs/tags/python_aip_agents-v0.5.25b8 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@60977103bff2f72bedaa5a6de192c7b5d5824207 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aip_agents_binary-0.5.25b8-py3-none-macosx_13_0_arm64.whl.
File metadata
- Download URL: aip_agents_binary-0.5.25b8-py3-none-macosx_13_0_arm64.whl
- Upload date:
- Size: 762.7 kB
- Tags: Python 3, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74a1c61d0b779ebb4be49f0c581480ae983c4d852ac9d8493819ed1cb64c0af0
|
|
| MD5 |
da0ebe23252fe87d831763995e2b69c0
|
|
| BLAKE2b-256 |
8a78f260e4eb786c5353fa7f0f0a2daf99a8d97b8f3925ea3e4af298b3308d81
|
Provenance
The following attestation bundles were made for aip_agents_binary-0.5.25b8-py3-none-macosx_13_0_arm64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/glaip-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aip_agents_binary-0.5.25b8-py3-none-macosx_13_0_arm64.whl -
Subject digest:
74a1c61d0b779ebb4be49f0c581480ae983c4d852ac9d8493819ed1cb64c0af0 - Sigstore transparency entry: 858985332
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/glaip-sdk@60977103bff2f72bedaa5a6de192c7b5d5824207 -
Branch / Tag:
refs/tags/python_aip_agents-v0.5.25b8 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@60977103bff2f72bedaa5a6de192c7b5d5824207 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aip_agents_binary-0.5.25b8-py3-none-any.whl.
File metadata
- Download URL: aip_agents_binary-0.5.25b8-py3-none-any.whl
- Upload date:
- Size: 566.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c05d6be50d0f7041cccdc49ea7a420c416f7eef0116ea430ec774f57176b0f4a
|
|
| MD5 |
0a2b869c2a21615709b797634ce9bfb8
|
|
| BLAKE2b-256 |
350392ac07fb703d645e7f40aab0941d163795dd8ad458d7cca5ab48b4563eba
|
Provenance
The following attestation bundles were made for aip_agents_binary-0.5.25b8-py3-none-any.whl:
Publisher:
build-binary.yml on GDP-ADMIN/glaip-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aip_agents_binary-0.5.25b8-py3-none-any.whl -
Subject digest:
c05d6be50d0f7041cccdc49ea7a420c416f7eef0116ea430ec774f57176b0f4a - Sigstore transparency entry: 858985886
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/glaip-sdk@60977103bff2f72bedaa5a6de192c7b5d5824207 -
Branch / Tag:
refs/tags/python_aip_agents-v0.5.25b8 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@60977103bff2f72bedaa5a6de192c7b5d5824207 -
Trigger Event:
push
-
Statement type: