Documentation Index
Fetch the complete documentation index at: https://www.adaline.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
PromptSnapshotConfig
Configuration types for prompt deployments in the Python SDK.PromptSnapshotConfig
The model and provider configuration returned as part of a deployment’s prompt snapshot.Fields
The AI provider name (e.g.,
"openai", "anthropic", "google", "azure", "bedrock").Adaline’s internal provider identifier.
The model identifier (e.g.,
"gpt-4o", "claude-sonnet-4-20250514").Normalized model settings. Adaline uses provider-agnostic parameter names that map to each provider’s native parameters.
Settings
Thesettings dict uses Adaline’s normalized parameter names. When you configure a prompt in Adaline, these are automatically mapped to the correct provider-specific parameter names.
| Adaline Key | OpenAI | Anthropic | Description | |
|---|---|---|---|---|
temperature | temperature | temperature | temperature | Sampling temperature |
maxTokens | max_tokens | max_tokens | maxOutputTokens | Maximum output tokens |
topP | top_p | top_p | topP | Nucleus sampling threshold |
stopSequences | stop | stop_sequences | stopSequences | Stop sequences |