renaming workflows and activities

This commit is contained in:
Steve Androulakis
2025-02-15 12:12:39 -08:00
parent ab83f4e5a0
commit b37d158770
8 changed files with 80 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
import asyncio
from shared.config import get_temporal_client
from workflows.tool_workflow import ToolWorkflow
from workflows.agent_goal_workflow import AgentGoalWorkflow
async def main():
@@ -12,7 +12,7 @@ async def main():
handle = client.get_workflow_handle(workflow_id)
# Queries the workflow for the conversation history
history = await handle.query(ToolWorkflow.get_conversation_history)
history = await handle.query(AgentGoalWorkflow.get_conversation_history)
print("Conversation History")
print(history)