- Thinker emits ACTIONS: JSON line with follow-up buttons
- UI node is now pure code (no LLM call) — renders actions as buttons,
extracts tables from pipe-separated tool output, labels for single values
- Controls only in workspace panel, not duplicated in chat
- Process cards only in awareness panel, failed auto-remove after 30s
- Auth expiry detection: 403/1006 shows login button, stops reconnect loop
- Sensor timezone fix: zoneinfo.ZoneInfo("Europe/Berlin") for proper DST
- Cache-Control: no-cache on index.html
- Markdown rendering in chat messages
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
185 lines
7.6 KiB
Python
185 lines
7.6 KiB
Python
"""Thinker Node: S3 — control, reasoning, tool use."""
|
|
|
|
import json
|
|
import logging
|
|
import re
|
|
|
|
from .base import Node
|
|
from ..llm import llm_call
|
|
from ..process import ProcessManager
|
|
from ..types import Command, ThoughtResult
|
|
|
|
log = logging.getLogger("runtime")
|
|
|
|
|
|
class ThinkerNode(Node):
|
|
name = "thinker"
|
|
model = "google/gemini-2.5-flash"
|
|
max_context_tokens = 4000
|
|
|
|
SYSTEM = """You are the Thinker node — the brain of this cognitive runtime.
|
|
You receive a perception of what the user said. Decide: answer directly or use a tool.
|
|
|
|
TOOLS — write a ```python code block and it WILL be executed. Use print() for output.
|
|
- For math, databases, file ops, any computation: write python. NEVER describe code — write it.
|
|
- For simple conversation: respond directly as text.
|
|
|
|
ACTIONS — ALWAYS end your response with an ACTIONS: line containing a JSON array.
|
|
The ACTIONS line MUST be the very last line of your response.
|
|
|
|
Format: ACTIONS: [json array of actions]
|
|
|
|
Examples:
|
|
User asks about dog breeds:
|
|
Here are three popular dog breeds: Golden Retriever, German Shepherd, and Poodle.
|
|
ACTIONS: [{{"label": "Golden Retriever", "action": "learn_breed", "payload": {{"breed": "Golden Retriever"}}}}, {{"label": "German Shepherd", "action": "learn_breed", "payload": {{"breed": "German Shepherd"}}}}, {{"label": "Poodle", "action": "learn_breed", "payload": {{"breed": "Poodle"}}}}]
|
|
|
|
User asks what time it is:
|
|
Es ist 14:30 Uhr.
|
|
ACTIONS: []
|
|
|
|
After creating a database:
|
|
Done! Created 5 customers in the database.
|
|
ACTIONS: [{{"label": "Show All", "action": "show_all"}}, {{"label": "Add Customer", "action": "add_customer"}}]
|
|
|
|
Rules:
|
|
- ALWAYS include the ACTIONS: line, even if empty: ACTIONS: []
|
|
- Keep labels short (2-4 words), action is snake_case.
|
|
- Only include meaningful actions — empty array is fine for simple chat.
|
|
|
|
{memory_context}"""
|
|
|
|
def __init__(self, send_hud, process_manager: ProcessManager = None):
|
|
super().__init__(send_hud)
|
|
self.pm = process_manager
|
|
|
|
def _parse_tool_call(self, response: str) -> tuple[str, str] | None:
|
|
"""Parse tool calls. Supports TOOL: format and auto-detects python code blocks."""
|
|
text = response.strip()
|
|
|
|
if text.startswith("TOOL:"):
|
|
lines = text.split("\n")
|
|
tool_name = lines[0].replace("TOOL:", "").strip()
|
|
code_lines = []
|
|
in_code = False
|
|
for line in lines[1:]:
|
|
if line.strip().startswith("```") and not in_code:
|
|
in_code = True
|
|
continue
|
|
elif line.strip().startswith("```") and in_code:
|
|
break
|
|
elif in_code:
|
|
code_lines.append(line)
|
|
elif line.strip().startswith("CODE:"):
|
|
continue
|
|
return (tool_name, "\n".join(code_lines)) if code_lines else None
|
|
|
|
block_match = re.search(r'```(python|py|sql|sqlite|sh|bash|tool_code)?\s*\n(.*?)```', text, re.DOTALL)
|
|
if block_match:
|
|
lang = (block_match.group(1) or "").lower()
|
|
code = block_match.group(2).strip()
|
|
if code and len(code.split("\n")) > 0:
|
|
# Only wrap raw SQL blocks — never re-wrap python that happens to contain SQL keywords
|
|
if lang in ("sql", "sqlite"):
|
|
wrapped = f'''import sqlite3
|
|
conn = sqlite3.connect("/tmp/cog_db.sqlite")
|
|
cursor = conn.cursor()
|
|
for stmt in """{code}""".split(";"):
|
|
stmt = stmt.strip()
|
|
if stmt:
|
|
cursor.execute(stmt)
|
|
conn.commit()
|
|
cursor.execute("SELECT name FROM sqlite_master WHERE type='table'")
|
|
tables = cursor.fetchall()
|
|
for t in tables:
|
|
cursor.execute(f"SELECT * FROM {{t[0]}}")
|
|
rows = cursor.fetchall()
|
|
cols = [d[0] for d in cursor.description]
|
|
print(f"Table: {{t[0]}}")
|
|
print(" | ".join(cols))
|
|
for row in rows:
|
|
print(" | ".join(str(c) for c in row))
|
|
conn.close()'''
|
|
return ("python", wrapped)
|
|
return ("python", code)
|
|
|
|
return None
|
|
|
|
def _strip_code_blocks(self, response: str) -> str:
|
|
"""Remove code blocks, return plain text."""
|
|
text = re.sub(r'```(?:python|py|sql|sqlite|sh|bash|tool_code).*?```', '', response, flags=re.DOTALL)
|
|
return text.strip()
|
|
|
|
def _parse_actions(self, response: str) -> tuple[str, list[dict]]:
|
|
"""Extract ACTIONS: JSON line from response. Returns (clean_text, actions)."""
|
|
actions = []
|
|
lines = response.split("\n")
|
|
clean_lines = []
|
|
for line in lines:
|
|
stripped = line.strip()
|
|
if stripped.startswith("ACTIONS:"):
|
|
try:
|
|
actions = json.loads(stripped[8:].strip())
|
|
if not isinstance(actions, list):
|
|
actions = []
|
|
except (json.JSONDecodeError, Exception):
|
|
pass
|
|
else:
|
|
clean_lines.append(line)
|
|
return "\n".join(clean_lines).strip(), actions
|
|
|
|
async def process(self, command: Command, history: list[dict], memory_context: str = "") -> ThoughtResult:
|
|
await self.hud("thinking", detail="reasoning about response")
|
|
|
|
messages = [
|
|
{"role": "system", "content": self.SYSTEM.format(memory_context=memory_context)},
|
|
]
|
|
for msg in history[-12:]:
|
|
messages.append(msg)
|
|
messages.append({"role": "system", "content": f"Input perception: {command.instruction}"})
|
|
messages = self.trim_context(messages)
|
|
|
|
await self.hud("context", messages=messages, tokens=self.last_context_tokens,
|
|
max_tokens=self.max_context_tokens, fill_pct=self.context_fill_pct)
|
|
|
|
response = await llm_call(self.model, messages)
|
|
if not response:
|
|
response = "[no response from LLM]"
|
|
log.info(f"[thinker] response: {response[:200]}")
|
|
|
|
tool_call = self._parse_tool_call(response)
|
|
if tool_call:
|
|
tool_name, code = tool_call
|
|
|
|
if self.pm and tool_name == "python":
|
|
proc = await self.pm.execute(tool_name, code)
|
|
tool_output = "\n".join(proc.output_lines)
|
|
else:
|
|
tool_output = f"[unknown tool: {tool_name}]"
|
|
|
|
log.info(f"[thinker] tool output: {tool_output[:200]}")
|
|
|
|
# Second call: interpret tool output + suggest actions
|
|
messages.append({"role": "assistant", "content": response})
|
|
messages.append({"role": "system", "content": f"Tool output:\n{tool_output}"})
|
|
messages.append({"role": "user", "content": "Respond to the user based on the tool output. Be natural and concise. End with ACTIONS: [json array] on the last line (empty array if no actions)."})
|
|
messages = self.trim_context(messages)
|
|
final = await llm_call(self.model, messages)
|
|
if not final:
|
|
final = "[no response from LLM]"
|
|
|
|
clean_text = self._strip_code_blocks(final)
|
|
clean_text, actions = self._parse_actions(clean_text)
|
|
if actions:
|
|
log.info(f"[thinker] actions: {actions}")
|
|
await self.hud("decided", instruction=clean_text[:200])
|
|
return ThoughtResult(response=clean_text, tool_used=tool_name,
|
|
tool_output=tool_output, actions=actions)
|
|
|
|
clean_text = self._strip_code_blocks(response) or response
|
|
clean_text, actions = self._parse_actions(clean_text)
|
|
if actions:
|
|
log.info(f"[thinker] actions: {actions}")
|
|
await self.hud("decided", instruction="direct response (no tools)")
|
|
return ThoughtResult(response=clean_text, actions=actions)
|