Yanis —
Quick question, has anyone tried routing ADK agents through Archestra's LLM Proxy ? I am able to talk to the agent but images/files are not going through, it seems like they are dropped and the agent only receives text. Anyone has any experience with routing different clients through the LLM proxy ? I am using LiteLLM in order to route through Archestra since ADK does not seem to provide a way to change the `api_base`. But I might be completely wrong in my approach, any help is appreciated. ```import os from google.adk.agents import Agent from google.adk.models.lite_llm import LiteLlm ARCHESTRA_LLM_PROXY_ID = "bc0ecdc9-ff33-43a1-a703-73a1fd1c80fb" ARCHESTRA_MODEL_ROUTER_URL = f"localhost:3000/v1/model-router/{ARCHESTRA_LLM_PROXY_ID}" root_agent = Agent( name="test_agent", model=LiteLlm( model="gemini-2.5-flash", api_base=ARCHESTRA_MODEL_ROUTER_URL, api_key=os.getenv("ARCHESTRA_API_KEY"), ), description=( "Agent to talk to." ), instruction=( "You are a helpful agent who can have a discussion with the user." ), )```
