mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
Fix mypy type annotation error in content_router.py
This commit is contained in:
parent
01472fefec
commit
dcbc220929
1 changed files with 2 additions and 2 deletions
|
|
@ -903,8 +903,8 @@ class ContentRouter(Transform):
|
|||
context = kwargs.get("context", "")
|
||||
source_hints = kwargs.get("source_hints", {}) # message_id -> hint
|
||||
|
||||
transformed_messages = []
|
||||
transforms_applied = []
|
||||
transformed_messages: list[dict[str, Any]] = []
|
||||
transforms_applied: list[str] = []
|
||||
warnings: list[str] = []
|
||||
|
||||
# Check for analysis intent in the most recent user message
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue