
exponential_backoff=True 的选项,并将 delay_between_retries 的值更改为秒(默认为 1 秒)。
例如:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.

exponential_backoff=True 的选项,并将 delay_between_retries 的值更改为秒(默认为 1 秒)。
例如:
from agno.agent import Agent
from agno.models.openai import OpenAIChat
agent = Agent(
model=OpenAIChat(id="gpt-4o"),
description="You are an enthusiastic news reporter with a flair for storytelling!",
markdown=True,
exponential_backoff=True,
delay_between_retries=2
)
agent.print_response("Tell me about a breaking news story from New York.", stream=True)