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_openai import ConnectionConfig, ChatConfig
>>> with tt.experimental({"ai"}): ... connection_config = ConnectionConfig( ... api_key=os.environ["AZURE_OPENAI_API_KEY"], ... base_url="https://aiwopenai.openai.azure.com/openai/v1", ... ) ... chat_config = ChatConfig( ... completions_path="/chat/completions", ... model="gpt-4.1", ... temperature=0.0, ... max_tokens=5000, ... top_p=0.8, ... ) ... ai_config = tt.AiConfig(connection=connection_config, chat=chat_config)
ConnectionConfig