Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
N1N_API_KEY
export N1N_API_KEY=your-api-key
id
str
"gpt-4o"
name
"N1N"
provider
api_key
Optional[str]
None
base_url
"https://api.n1n.ai/v1"
N1N
from agno.agent import Agent from agno.models.n1n import N1N agent = Agent(model=N1N(id="gpt-4o"), markdown=True) agent.print_response("Share a 2 sentence horror story.")
from agno.agent import Agent from agno.models.n1n import N1N from agno.tools.websearch import WebSearchTools agent = Agent( model=N1N(id="gpt-5-mini"), markdown=True, tools=[WebSearchTools()], ) agent.print_response("What is happening in France?", stream=True)
Was this page helpful?