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:
parent
a20643470f
commit
ff603b5490
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ async def extract_nodes_reflexion(
|
||||||
previous_episodes: list[EpisodicNode],
|
previous_episodes: list[EpisodicNode],
|
||||||
node_names: list[str],
|
node_names: list[str],
|
||||||
ensure_ascii: bool = False,
|
ensure_ascii: bool = False,
|
||||||
group_id: str = '',
|
group_id: str | None = None,
|
||||||
) -> list[str]:
|
) -> list[str]:
|
||||||
# Prepare context for LLM
|
# Prepare context for LLM
|
||||||
context = {
|
context = {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue