Files
nested_repo_3/program/config.py
2026-02-22 12:43:06 -08:00

10 lines
329 B
Python

from modaic import PrecompiledConfig
from pydantic import Field
class AgentWRetreiverConfig(PrecompiledConfig):
num_fetch: int
lm: str = "openai/gpt-4o-mini"
embedder: str = "openai/text-embedding-3-small"
clients: dict = Field(default_factory=lambda: {"mit": ["csail", "mit-media-lab"], "berkeley": ["bear"]})