Skip to content

FloTorch ADK Plugin 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 integration
  • FlotorchADKLLM – ADK-compatible LLM wrapper
  • FlotorchMemoryService, FlotorchADKVectorMemoryService – Memory services for ADK
  • FlotorchADKSession – Session management for ADK

Terminal window
pip install flotorch[adk]

You can configure credentials in one of two ways:

Section titled “Option A: Environment variables (recommended)”
Terminal window
export FLOTORCH_API_KEY="<your_api_key>"
export FLOTORCH_BASE_URL="https://gateway.flotorch.cloud"
from flotorch.adk.agent import FlotorchADKAgent
agent = FlotorchADKAgent(
agent_name="my-agent",
base_url="https://gateway.flotorch.cloud",
api_key="<your_api_key>",
)

  • 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