/ chat_workflow / prompts / __init__.py
__init__.py
 1  from .thinking_claude import THINKING_CLAUDE
 2  
 3  
 4  BASE = """
 5  You are a helpful assistant.
 6  """
 7  
 8  all_prompts = {
 9      "base": BASE,
10      "thinking_claude": THINKING_CLAUDE,
11  }