mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-16 06:28:08 +01:00
refactor, date context
This commit is contained in:
211
workflows/tool_workflow.py
Normal file
211
workflows/tool_workflow.py
Normal file
@@ -0,0 +1,211 @@
|
||||
from collections import deque
|
||||
from datetime import timedelta
|
||||
from typing import Deque, List, Optional, Tuple
|
||||
|
||||
from temporalio import workflow
|
||||
from prompts.agent_prompt_generators import (
|
||||
generate_genai_prompt_from_tools_data,
|
||||
generate_json_validation_prompt_from_tools_data,
|
||||
)
|
||||
|
||||
with workflow.unsafe.imports_passed_through():
|
||||
from activities.tool_activities import ToolActivities, ToolPromptInput
|
||||
from prompts.agent_prompt_generators import (
|
||||
generate_genai_prompt_from_tools_data,
|
||||
generate_json_validation_prompt_from_tools_data,
|
||||
)
|
||||
from models.data_types import CombinedInput, ToolWorkflowParams
|
||||
|
||||
|
||||
@workflow.defn
|
||||
class ToolWorkflow:
|
||||
def __init__(self) -> None:
|
||||
self.conversation_history: List[Tuple[str, str]] = []
|
||||
self.prompt_queue: Deque[str] = deque()
|
||||
self.conversation_summary: Optional[str] = None
|
||||
self.chat_ended: bool = False
|
||||
self.tool_data = None
|
||||
self.max_turns_before_continue: int = 250
|
||||
|
||||
@workflow.run
|
||||
async def run(self, combined_input: CombinedInput) -> str:
|
||||
|
||||
params = combined_input.tool_params
|
||||
tools_data = combined_input.tools_data
|
||||
|
||||
if params and params.conversation_summary:
|
||||
self.conversation_history.append(
|
||||
("conversation_summary", params.conversation_summary)
|
||||
)
|
||||
self.conversation_summary = params.conversation_summary
|
||||
|
||||
if params and params.prompt_queue:
|
||||
self.prompt_queue.extend(params.prompt_queue)
|
||||
|
||||
while True:
|
||||
workflow.logger.info("Waiting for prompts...")
|
||||
|
||||
await workflow.wait_condition(
|
||||
lambda: bool(self.prompt_queue) or self.chat_ended
|
||||
)
|
||||
|
||||
if self.prompt_queue:
|
||||
# Get user's prompt
|
||||
prompt = self.prompt_queue.popleft()
|
||||
self.conversation_history.append(("user", prompt))
|
||||
|
||||
# Build prompt + context
|
||||
context_instructions = generate_genai_prompt_from_tools_data(
|
||||
tools_data, self.format_history()
|
||||
)
|
||||
workflow.logger.info("Prompt: " + prompt)
|
||||
|
||||
# Pass a single input object
|
||||
prompt_input = ToolPromptInput(
|
||||
prompt=prompt,
|
||||
context_instructions=context_instructions,
|
||||
)
|
||||
|
||||
# Call activity with one argument
|
||||
responsePrechecked = await workflow.execute_activity_method(
|
||||
ToolActivities.prompt_llm,
|
||||
prompt_input,
|
||||
schedule_to_close_timeout=timedelta(seconds=20),
|
||||
)
|
||||
|
||||
# Check if the response is valid JSON
|
||||
json_validation_instructions = (
|
||||
generate_json_validation_prompt_from_tools_data(
|
||||
tools_data, self.format_history(), responsePrechecked
|
||||
)
|
||||
)
|
||||
workflow.logger.info("Prompt: " + prompt)
|
||||
|
||||
# Pass a single input object
|
||||
prompt_input = ToolPromptInput(
|
||||
prompt=responsePrechecked,
|
||||
context_instructions=json_validation_instructions,
|
||||
)
|
||||
|
||||
# Call activity with one argument
|
||||
response = await workflow.execute_activity_method(
|
||||
ToolActivities.prompt_llm,
|
||||
prompt_input,
|
||||
schedule_to_close_timeout=timedelta(seconds=20),
|
||||
)
|
||||
|
||||
workflow.logger.info(f"Ollama response: {response}")
|
||||
self.conversation_history.append(("response", response))
|
||||
|
||||
# Call activity with one argument
|
||||
tool_data = await workflow.execute_activity_method(
|
||||
ToolActivities.parse_tool_data,
|
||||
response,
|
||||
schedule_to_close_timeout=timedelta(seconds=1),
|
||||
)
|
||||
|
||||
self.tool_data = tool_data
|
||||
|
||||
if self.tool_data.get("next") == "confirm":
|
||||
return self.tool_data
|
||||
|
||||
# Continue as new after X turns
|
||||
if len(self.conversation_history) >= self.max_turns_before_continue:
|
||||
# Summarize conversation
|
||||
summary_context, summary_prompt = self.prompt_summary_with_history()
|
||||
summary_input = ToolPromptInput(
|
||||
prompt=summary_prompt,
|
||||
context_instructions=summary_context,
|
||||
)
|
||||
|
||||
self.conversation_summary = await workflow.start_activity_method(
|
||||
ToolActivities.prompt_llm,
|
||||
summary_input,
|
||||
schedule_to_close_timeout=timedelta(seconds=20),
|
||||
)
|
||||
|
||||
workflow.logger.info(
|
||||
"Continuing as new after %i turns."
|
||||
% self.max_turns_before_continue,
|
||||
)
|
||||
|
||||
workflow.continue_as_new(
|
||||
args=[
|
||||
CombinedInput(
|
||||
tool_params=ToolWorkflowParams(
|
||||
conversation_summary=self.conversation_summary,
|
||||
prompt_queue=self.prompt_queue,
|
||||
),
|
||||
tools_data=tools_data,
|
||||
)
|
||||
]
|
||||
)
|
||||
|
||||
continue
|
||||
|
||||
# Handle end of chat
|
||||
if self.chat_ended:
|
||||
if len(self.conversation_history) > 1:
|
||||
# Summarize conversation
|
||||
summary_context, summary_prompt = self.prompt_summary_with_history()
|
||||
summary_input = ToolPromptInput(
|
||||
prompt=summary_prompt,
|
||||
context_instructions=summary_context,
|
||||
)
|
||||
|
||||
self.conversation_summary = await workflow.start_activity_method(
|
||||
ToolActivities.prompt_llm,
|
||||
summary_input,
|
||||
schedule_to_close_timeout=timedelta(seconds=20),
|
||||
)
|
||||
|
||||
workflow.logger.info(
|
||||
"Chat ended. Conversation summary:\n"
|
||||
+ f"{self.conversation_summary}"
|
||||
)
|
||||
return f"{self.conversation_history}"
|
||||
|
||||
@workflow.signal
|
||||
async def user_prompt(self, prompt: str) -> None:
|
||||
if self.chat_ended:
|
||||
workflow.logger.warn(f"Message dropped due to chat closed: {prompt}")
|
||||
return
|
||||
self.prompt_queue.append(prompt)
|
||||
|
||||
@workflow.signal
|
||||
async def end_chat(self) -> None:
|
||||
self.chat_ended = True
|
||||
|
||||
@workflow.query
|
||||
def get_conversation_history(self) -> List[Tuple[str, str]]:
|
||||
return self.conversation_history
|
||||
|
||||
@workflow.query
|
||||
def get_summary_from_history(self) -> Optional[str]:
|
||||
return self.conversation_summary
|
||||
|
||||
@workflow.query
|
||||
def get_tool_data(self) -> Optional[str]:
|
||||
return self.tool_data
|
||||
|
||||
# Helper: generate text of the entire conversation so far
|
||||
def format_history(self) -> str:
|
||||
return " ".join(f"{text}" for _, text in self.conversation_history)
|
||||
|
||||
# Return (context_instructions, prompt)
|
||||
def prompt_with_history(self, prompt: str) -> tuple[str, str]:
|
||||
history_string = self.format_history()
|
||||
context_instructions = (
|
||||
f"Here is the conversation history: {history_string} "
|
||||
"Please add a few sentence response in plain text sentences. "
|
||||
"Don't editorialize or add metadata. "
|
||||
"Keep the text a plain explanation based on the history."
|
||||
)
|
||||
return (context_instructions, prompt)
|
||||
|
||||
# Return (context_instructions, prompt) for summarizing the conversation
|
||||
def prompt_summary_with_history(self) -> tuple[str, str]:
|
||||
history_string = self.format_history()
|
||||
context_instructions = f"Here is the conversation history between a user and a chatbot: {history_string}"
|
||||
actual_prompt = "Please produce a two sentence summary of this conversation."
|
||||
return (context_instructions, actual_prompt)
|
||||
Reference in New Issue
Block a user