mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
11 lines
215 B
Python
11 lines
215 B
Python
import pydantic
|
|
|
|
|
|
class Settings(pydantic.BaseSettings):
|
|
backend_url: str = "ws://localhost:8000"
|
|
model_id: str = "distilgpt2"
|
|
inference_server_url: str = "http://localhost:8001"
|
|
|
|
|
|
settings = Settings()
|