Skip to content

Commit 9647d4b

Browse files
committed
style(ai): remove stale comments on Ai's fake registries
1 parent 7510b64 commit 9647d4b

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

  • fastapi_startkit/src/fastapi_startkit/ai

fastapi_startkit/src/fastapi_startkit/ai/ai.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,7 @@
99

1010

1111
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.
1712
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.
2013
fake_agent_responses: dict[str, Any] = {}
2114

2215
def __init__(self) -> None:

0 commit comments

Comments
 (0)