mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-24 20:51:02 +02:00
Fix agent step stuff
This commit is contained in:
parent
0d6ef33b64
commit
47d83a80de
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ class AgentRequest:
|
||||||
question: str = ""
|
question: str = ""
|
||||||
state: str = ""
|
state: str = ""
|
||||||
group: list[str] | None = None
|
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