Skip to main content
Siliconflow is a platform for providing endpoints for Large Language models. Explore Siliconflow’s models here.

Authentication

Set your SILICONFLOW_API_KEY environment variable. Get your key from Siliconflow here.
export SILICONFLOW_API_KEY=***

Example

Use Siliconflow with your Agent:
from agno.agent import Agent
from agno.models.siliconflow import Siliconflow

agent = Agent(model=Siliconflow(), markdown=True)

# Print the response in the terminal
agent.print_response("Share a 2 sentence horror story")

View more examples here.

Params

ParameterTypeDefaultDescription
idstr"meta-llama/Meta-Llama-3.1-8B-Instruct"The id of the SiliconFlow model to use
namestr"SiliconFlow"The name of the model
providerstr"SiliconFlow"The provider of the model
api_keyOptional[str]NoneThe API key for SiliconFlow (defaults to SILICONFLOW_API_KEY env var)
base_urlstr"https://api.siliconflow.cn/v1"The base URL for the SiliconFlow API
Siliconflow also supports the params of OpenAI.
I