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.
DynamoDb
aws_access_key_id
aws_secret_access_key
from agno.db.dynamo import DynamoDb # AWS Credentials AWS_ACCESS_KEY_ID = getenv("AWS_ACCESS_KEY_ID") AWS_SECRET_ACCESS_KEY = getenv("AWS_SECRET_ACCESS_KEY") db = DynamoDb( region_name="us-east-1", # aws_access_key_id: AWS access key id aws_access_key_id=AWS_ACCESS_KEY_ID, # aws_secret_access_key: AWS secret access key aws_secret_access_key=AWS_SECRET_ACCESS_KEY, ) # Add storage to the Agent agent = Agent(db=db)
id
Optional[str]
db_client
None
region_name
optional[str]
session_table
memory_table
metrics_table
eval_table
knowledge_table
traces_table
spans_table
Was this page helpful?