Fix type inconsistency in extract_nodes_reflexion parameter

Change group_id parameter from str = '' to str | None = None to match
the pattern used throughout the codebase and align with the optional
nature of group_id in generate_response().

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Daniel Chalef 2025-09-30 12:07:48 -07:00
parent a20643470f
commit ff603b5490

View file

@ -65,7 +65,7 @@ async def extract_nodes_reflexion(
previous_episodes: list[EpisodicNode],
node_names: list[str],
ensure_ascii: bool = False,
group_id: str = '',
group_id: str | None = None,
) -> list[str]:
# Prepare context for LLM
context = {