Configuration
This module contains functionality related to the the configuration
module for augmentation.components.llms.openai_like
.
Configuration
OpenAILikeLLMConfiguration
Bases: LLMConfiguration
Configuration for OpenAI-compatible language model providers.
This class defines the configuration settings needed to interact with APIs that follow OpenAI's API patterns, including authentication and context window settings.
Source code in src/augmentation/components/llms/openai_like/configuration.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
Secrets
Bases: BaseSecrets
Secret configuration values required for authentication with OpenAI-like APIs.
This class stores sensitive information needed to connect to the API and supports loading values from environment variables.
Source code in src/augmentation/components/llms/openai_like/configuration.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|