(no commit message)

This commit is contained in:
2026-03-29 22:05:15 -07:00
parent 2b5e0c09de
commit d9fb8f67e5
25 changed files with 134 additions and 2 deletions

9
program/config.py Normal file
View File

@@ -0,0 +1,9 @@
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"]})