Authentication
Set yourSAMBANOVA_API_KEY environment variable. Get your key from here.
Example
Install theopenai package:
Sambanova with your Agent:
Params
Sambanova also supports the params of OpenAI.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use SambaNova models with Agno agents.
SAMBANOVA_API_KEY environment variable. Get your key from here.
export SAMBANOVA_API_KEY=***
setx SAMBANOVA_API_KEY ***
openai package:
uv pip install -U agno openai
Sambanova with your Agent:
from agno.agent import Agent
from agno.models.sambanova import Sambanova
agent = Agent(model=Sambanova(), markdown=True)
# Print the response in the terminal
agent.print_response("Share a 2 sentence horror story.")
| Parameter | Type | Default | Description |
|---|---|---|---|
id | str | "Meta-Llama-3.1-8B-Instruct" | The id of the SambaNova model to use |
name | str | "Sambanova" | The name of the model |
provider | str | "Sambanova" | The provider of the model |
api_key | Optional[str] | None | The API key for SambaNova (defaults to SAMBANOVA_API_KEY env var) |
base_url | str | "https://api.sambanova.ai/v1" | The base URL for the SambaNova API |
Sambanova also supports the params of OpenAI.Was this page helpful?