Spaces:
Runtime error
Runtime error
File size: 248 Bytes
b78c251 |
1 2 3 4 5 6 7 8 9 10 11 |
from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
OLLAMA_SERVER: str
model_config = SettingsConfigDict(env_file="env", env_file_encoding="utf-8")
# Instantiate the settings
config = Settings() |