Example


from phi.agent import Agent
from phi.model.openrouter import OpenRouter
from phi.tools.yfinance import YFinanceTools

agent = Agent(
model=OpenRouter(id="gpt-4o"),
tools=[YFinanceTools(stock_price=True)],
show_tool_calls=True,
markdown=True,
)

agent.print_response("What is the stock price of NVDA and TSLA")

OpenRouter Params

ParameterTypeDefaultDescription
idstr"gpt-4o"The specific model ID used for generating responses.
namestr"OpenRouter"The name identifier for the OpenRouter agent.
providerstr-The provider of the model, combining "OpenRouter" with the model ID.
api_keyOptional[str]-The API key for authenticating requests to the OpenRouter service. Retrieved from the environment variable OPENROUTER_API_KEY.
base_urlstr"https://openrouter.ai/api/v1"The base URL for making API requests to the OpenRouter service.
max_tokensint1024The maximum number of tokens to generate in the response.

OpenRouter is a subclass of the OpenAILike class and has access to the same params.