Configuration
This module contains functionality related to the the configuration
module for augmentation.components.llms.openai
.
Configuration
OpenAILLMConfiguration
Bases: LLMConfiguration
Configuration for OpenAI language models.
This class extends the base LLMConfiguration to provide OpenAI-specific configuration options and secrets management.
Source code in src/augmentation/components/llms/openai/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 |
|
Secrets
Bases: BaseSecrets
Secrets configuration for OpenAI API authentication.
Contains sensitive information required to authenticate with the OpenAI API. Values can be provided through environment variables with the prefix RAG__LLMS__OPENAI__.
Source code in src/augmentation/components/llms/openai/configuration.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|