mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-23 20:21:03 +02:00
Schema error in agent flow
This commit is contained in:
parent
5f513f7fa2
commit
0d6ef33b64
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ class AgentStep:
|
||||||
class AgentRequest:
|
class AgentRequest:
|
||||||
question: str = ""
|
question: str = ""
|
||||||
state: str = ""
|
state: str = ""
|
||||||
group: list[str] = field(default_factory=list)
|
group: list[str] | None = None
|
||||||
history: list['AgentStep'] = field(default_factory=list)
|
history: list['AgentStep'] = field(default_factory=list)
|
||||||
user: str = "" # User context for multi-tenancy
|
user: str = "" # User context for multi-tenancy
|
||||||
streaming: bool = False # NEW: Enable streaming response delivery (default false)
|
streaming: bool = False # NEW: Enable streaming response delivery (default false)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue