Add your description here
Project description
LangDB LLM for Google ADK
A Google ADK (Agent Development Kit) model implementation for LangDB's LLM API. This package provides seamless integration of LangDB's LLM capabilities into the Google ADK framework.
Features
- Native integration with Google ADK's
BaseLlminterface - Support for both streaming and non-streaming completions
- Built-in function calling support
- Integration with MCP (Model Control Protocol) servers
- Asynchronous API compatible with ADK's execution model
- Automatic handling of tool execution and responses
Installation
pip install -e .
Usage with Google ADK
Basic Usage
import os
import asyncio
from google.adk import Agent
from langdb_adk import LangDBLlm
from google.adk.runners import InMemoryRunner
async def main():
# Initialize the LangDB LLM with your credentials
llm = LangDBLlm(
model_name="anthropic/claude-sonnet-4",
api_key=os.getenv("LANGDB_API_KEY"),
project_id=os.getenv("LANGDB_PROJECT_ID")
)
# Create an ADK agent with the LangDB LLM
agent = Agent(llm=llm)
# Create a runner to execute the agent
runner = InMemoryRunner()
# Run the agent with a prompt
response = await runner.run(agent, "Hello, how are you?")
print(response.text)
if __name__ == "__main__":
asyncio.run(main())
With MCP Servers
# Configure MCP servers for LangDB
mcp_servers = [
{
"server_url": "server_url",
"type": "sse",
"name": "search",
"description": "Web search capabilities via DuckDuckGo"
}
]
async def main():
# Initialize the LangDB LLM with MCP servers
llm = LangDBLlm(
model_name="anthropic/claude-sonnet-4",
api_key=os.getenv("LANGDB_API_KEY"),
project_id=os.getenv("LANGDB_PROJECT_ID"),
mcp_servers=mcp_servers
)
# Create an ADK agent with the LangDB LLM
agent = Agent(llm=llm)
# Create a runner to execute the agent
runner = InMemoryRunner()
# Run the agent with a prompt that can use MCP tools
response = await runner.run(agent, "Search for the latest news about AI")
print(response.text)
Configuration
Environment Variables
LANGDB_API_KEY: Your LangDB API key (required)LANGDB_PROJECT_ID: Your LangDB project ID (required)
LangDBLlm Parameters
model_name: The name of the model to use (e.g., "anthropic/claude-sonnet-4")api_key: Your LangDB API keyproject_id: Your LangDB project IDextra_headers: Additional headers to include in requestsmcp_servers: List of MCP server configurations for extended capabilities
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Acknowledgements
- Google ADK Team for the Agent Development Kit
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
langdb_adk-0.1.3.tar.gz
(9.5 kB
view details)
Built Distribution
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 langdb_adk-0.1.3.tar.gz.
File metadata
- Download URL: langdb_adk-0.1.3.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9708f4a6a7e02485f91b90d4eae246faecfd4a02ddd30a12310f15006b6481ed
|
|
| MD5 |
8aeb3c35fda9a959f2884fc07e2652d4
|
|
| BLAKE2b-256 |
84fadd39488978bc56d970bf5eecca5e7c45e6159f03624482c8c0d9ac0beaee
|
File details
Details for the file langdb_adk-0.1.3-py3-none-any.whl.
File metadata
- Download URL: langdb_adk-0.1.3-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81a2c8daeca11179e55d8eb3502c998ca199edeeed4fb6a647dee1d4b2879561
|
|
| MD5 |
2042815ec0b08efc9ddaec528edec4e5
|
|
| BLAKE2b-256 |
4f12f44bb707dd345550290f9d7ec54a45c59471e434608834fc4fef6f728ccb
|