* use default values for non-required properties if a default is specified * generate client * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
18 lines
270 B
Python
18 lines
270 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class JetstreamConfig(BaseModel):
|
|
"""Jetstream configuration."""
|
|
|
|
domain: str = ""
|
|
|
|
max_memory: int = 0
|
|
|
|
max_storage: int = 0
|
|
|
|
store_dir: str = ""
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|