Allow chat history to be sent to AI engine (#6128)

# Description of Changes
Add an extra parameter to every agent to receive the conversation
history in addition to the current message. This will make it possible
to answer followup questions from the AI without needing to give full
context in your message.
This commit is contained in:
James Brunton
2026-04-21 15:03:10 +00:00
committed by GitHub
parent f779085d75
commit 2a856fbc19
14 changed files with 116 additions and 19 deletions
@@ -18,6 +18,7 @@ from .common import (
SupportedCapability,
ToolOperationStep,
WorkflowOutcome,
format_conversation_history,
)
from .execution import (
AgentExecutionRequest,
@@ -104,6 +105,7 @@ __all__ = [
"Folio",
"FolioManifest",
"FolioType",
"format_conversation_history",
"HealthResponse",
"NeedContentFileRequest",
"NextExecutionAction",