mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-16 22:48:09 +01:00
refactors and ui enhancements
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from dataclasses import dataclass
|
||||
from typing import Optional, Deque
|
||||
from models.tool_definitions import ToolsData
|
||||
from models.tool_definitions import AgentGoal
|
||||
|
||||
|
||||
@dataclass
|
||||
@@ -12,4 +12,4 @@ class ToolWorkflowParams:
|
||||
@dataclass
|
||||
class CombinedInput:
|
||||
tool_params: ToolWorkflowParams
|
||||
tools_data: ToolsData
|
||||
agent_goal: AgentGoal
|
||||
|
||||
@@ -17,7 +17,7 @@ class ToolDefinition:
|
||||
|
||||
|
||||
@dataclass
|
||||
class ToolsData:
|
||||
class AgentGoal:
|
||||
tools: List[ToolDefinition]
|
||||
description: str = "Description of the tools purpose and overall goal"
|
||||
example_conversation_history: str = (
|
||||
|
||||
Reference in New Issue
Block a user