- Add app/core/deep_agent.py with Home and Floating supervisor graphs using LangGraph create_react_agent (hierarchical pattern) - Strip ChatAgent classes from all 4 agent files, keep @tool functions - Rewrite output_formatter.py for event-based (token/tool_end/mutations) stream - Update device_ws.py to use run_home_stream/run_floating_stream - Rewrite chat.py REST route to use run_home - Add update_core_memory tool to both supervisors - Add langgraph>=0.3.0 to requirements.txt - Remove orchestrator.py, execution_plan.py, agent_registry.py, plans.py - Remove PlanAction, PlanStep, ExecutionPlan, execution_mode from schemas - Update all affected tests to match new API - Remove 6 deprecated test files for deleted modules - Clean up stale docstrings referencing removed orchestrator
109 lines
3.0 KiB
Python
109 lines
3.0 KiB
Python
"""Note agent — tool definitions for Markdown note CRUD."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from langchain_core.tools import tool
|
|
|
|
from app.core.llm import embed
|
|
from app.core.ws_context import execute_on_client
|
|
|
|
|
|
@tool
|
|
async def list_notes(project_id: str = "") -> str:
|
|
"""List notes, optionally scoped to a project by project_id."""
|
|
result = await execute_on_client(
|
|
action="select",
|
|
table="notes",
|
|
filters={"projectId": project_id or None},
|
|
)
|
|
rows = result.get("rows", [])
|
|
if not rows:
|
|
return "No notes found."
|
|
lines = [f"- {r['title']} (id: {r['id']})" for r in rows]
|
|
return f"Found {len(rows)} note(s):\n" + "\n".join(lines)
|
|
|
|
|
|
@tool
|
|
async def get_note(note_id: str) -> str:
|
|
"""Fetch a single note by its UUID to read its full Markdown content."""
|
|
result = await execute_on_client(action="get", table="notes", data={"id": note_id})
|
|
row = result.get("row")
|
|
if not row:
|
|
return f"Note {note_id} not found."
|
|
return f"Note '{row['title']}' (id: {row['id']}):\n\n{row['content']}"
|
|
|
|
|
|
@tool
|
|
async def create_note(
|
|
title: str,
|
|
content: str,
|
|
project_id: str = "",
|
|
) -> str:
|
|
"""Create a new note.
|
|
title: note heading (required)
|
|
content: Markdown body text (required)
|
|
project_id: optional UUID linking this note to a project
|
|
"""
|
|
result = await execute_on_client(
|
|
action="insert",
|
|
table="notes",
|
|
data={
|
|
"title": title,
|
|
"content": content,
|
|
"projectId": project_id or None,
|
|
},
|
|
)
|
|
row = result["row"]
|
|
# Index the note content in the vector store.
|
|
vector = await embed(content)
|
|
await execute_on_client(
|
|
action="vector_upsert",
|
|
data={"id": row["id"], "projectId": row.get("projectId"), "content": content},
|
|
vector=vector,
|
|
)
|
|
return f"Note created: '{row['title']}' (id: {row['id']})."
|
|
|
|
|
|
@tool
|
|
async def update_note(
|
|
note_id: str,
|
|
title: str = "",
|
|
content: str = "",
|
|
) -> str:
|
|
"""Update an existing note. Only pass fields that should change.
|
|
note_id: UUID of the note (required)
|
|
If you need to preserve existing content, call get_note first.
|
|
"""
|
|
updates: dict[str, Any] = {}
|
|
if title:
|
|
updates["title"] = title
|
|
if content:
|
|
updates["content"] = content
|
|
result = await execute_on_client(
|
|
action="update",
|
|
table="notes",
|
|
data={"id": note_id, "updates": updates},
|
|
)
|
|
row = result["row"]
|
|
# Re-index if content changed.
|
|
if content:
|
|
vector = await embed(content)
|
|
await execute_on_client(
|
|
action="vector_upsert",
|
|
data={"id": note_id, "projectId": row.get("projectId"), "content": content},
|
|
vector=vector,
|
|
)
|
|
return f"Note updated: '{row['title']}' (id: {row['id']})."
|
|
|
|
|
|
@tool
|
|
async def delete_note(note_id: str) -> str:
|
|
"""Delete a note permanently by its UUID."""
|
|
await execute_on_client(action="delete", table="notes", data={"id": note_id})
|
|
return f"Note {note_id} deleted."
|
|
|
|
|
|
|