10 lines
227 B
Python
10 lines
227 B
Python
from pydantic import BaseModel, ConfigDict
|
|
|
|
from knowledge_platform.config import ModelConfig
|
|
|
|
|
|
class RuntimeConfig(BaseModel):
|
|
model_config = ConfigDict(frozen=True)
|
|
|
|
selected_model: ModelConfig
|
|
system_prompt: str
|