Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

final class atoti.AiConfig

Atoti Intelligence configuration.
This feature is experimental, its key is "ai".

Example

>>> from atoti_ai_amazon_bedrock import (
...     ChatConfig,
...     ConnectionConfig,
... )
>>> with tt.experimental({"ai"}):
...     ai_config = tt.AiConfig(
...         connection=ConnectionConfig(
...             aws_access_key="...",
...             aws_secret_key="...",
...         ),
...         chat=ChatConfig(
...             model="anthropic.claude-3-sonnet-20240229-v1:0",
...         ),
...     )

chat : ChatConfig

connection : ConnectionConfig