FloTorch ADK Plugin Overview
Overview
Section titled “Overview”The FloTorch ADK Plugin provides Google ADK-compatible implementations that integrate with FloTorch’s Gateway and Workspace services. It enables you to build agents using Google’s Agent Development Kit while leveraging FloTorch’s infrastructure.
Exports:
FlotorchADKAgent
– Main agent manager with config sync and tool integrationFlotorchADKLLM
– ADK-compatible LLM wrapperFlotorchMemoryService
,FlotorchADKVectorMemoryService
– Memory services for ADKFlotorchADKSession
– Session management for ADK
Installation
Section titled “Installation”pip install flotorch[adk]
Configuration
Section titled “Configuration”You can configure credentials in one of two ways:
Option A: Environment variables (recommended)
Section titled “Option A: Environment variables (recommended)”export FLOTORCH_API_KEY="<your_api_key>"export FLOTORCH_BASE_URL="https://gateway.flotorch.cloud"
Option B: Pass to constructors explicitly
Section titled “Option B: Pass to constructors explicitly”from flotorch.adk.agent import FlotorchADKAgent
agent = FlotorchADKAgent( agent_name="my-agent", base_url="https://gateway.flotorch.cloud", api_key="<your_api_key>",)
Next Steps
Section titled “Next Steps”- See individual module pages for detailed APIs
- Configure your agent in the FloTorch Console
- Set up memory providers and vector stores
- Refer to the official ADK documentation: Google ADK docs