refactor: Move structured_output out of base config
This commit is contained in:
parent
cb21e08ad9
commit
8af8424b8d
1 changed files with 0 additions and 2 deletions
|
|
@ -15,7 +15,6 @@ class BaseConfig(BaseSettings):
|
|||
langfuse_host: Optional[str] = os.getenv("LANGFUSE_HOST")
|
||||
default_user_email: Optional[str] = os.getenv("DEFAULT_USER_EMAIL")
|
||||
default_user_password: Optional[str] = os.getenv("DEFAULT_USER_PASSWORD")
|
||||
|
||||
model_config = SettingsConfigDict(env_file=".env", extra="allow")
|
||||
|
||||
def to_dict(self) -> dict:
|
||||
|
|
@ -23,7 +22,6 @@ class BaseConfig(BaseSettings):
|
|||
"data_root_directory": self.data_root_directory,
|
||||
"system_root_directory": self.system_root_directory,
|
||||
"monitoring_tool": self.monitoring_tool,
|
||||
"structured_output_framework": self.structured_output_framework,
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue