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.
Atoti Python SDK
experimental
"ai"
>>> import os >>> from atoti_ai_amazon_bedrock import ConnectionConfig, ChatConfig
>>> with tt.experimental({"ai"}): ... connection_config = ConnectionConfig( ... aws_access_key=os.environ["AWS_ACCESS_KEY_ID"], ... aws_secret_key=os.environ["AWS_SECRET_ACCESS_KEY"], ... aws_region="eu-west-3", ... ) ... chat_config = ChatConfig( ... model="eu.mistral.pixtral-large-2502-v1:0", ... ) ... ai_config = tt.AiConfig(connection=connection_config, chat=chat_config)
ConnectionConfig