There was an error while loading. Please reload this page.
1 parent 7510b64 commit 9647d4bCopy full SHA for 9647d4b
1 file changed
fastapi_startkit/src/fastapi_startkit/ai/ai.py
@@ -9,14 +9,7 @@
9
10
11
class Ai:
12
- # Keyed by agent class name (see _key()) so a fake can be registered
13
- # before any instance of that agent exists. get_model_for() consults
14
- # this registry, so a faked agent runs through the same message-building
15
- # / pipeline / tool-execution path as a real one — only the model at the
16
- # bottom is swapped for a deterministic stand-in.
17
fake_agent_models: dict[str, Any] = {}
18
- # Reserved for response-level fakes (mirroring fake_agent_models, but for
19
- # cached final replies rather than whole chat models). Not yet wired up.
20
fake_agent_responses: dict[str, Any] = {}
21
22
def __init__(self) -> None:
0 commit comments