Spaces:
Sleeping
Sleeping
File size: 19,839 Bytes
1fce18e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | """
==========================================================================
π§ Thought Engine Node β Sovereign REST Substrate
==========================================================================
Contract: C-THOUGHT-NODE-001 (Phase 1)
Vault: thought-vault (Cloudflare D1)
Stack: FastAPI + httpx + Cloudflare D1 HTTP API
A persistent, queryable, forkable reasoning system with provenance,
pattern memory, and multiple entry surfaces.
==========================================================================
"""
import os
import uuid
import json
from datetime import datetime, timezone
from typing import Optional, List
from dotenv import load_dotenv
load_dotenv()
from fastapi import FastAPI, HTTPException, Query
from fastapi.middleware.cors import CORSMiddleware
import d1_client
from models import (
CreateSessionReq, AddThoughtReq, ForkThoughtReq,
CreateProposalReq, ReviewProposalReq, SearchReq,
SessionInfo, ThoughtInfo, EdgeInfo, TreeNode,
ThoughtClass, ThoughtStatus, EdgeRelation, ReviewAction,
)
# ββ Application ββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(
title="Thought Engine Node",
description="Sovereign reasoning substrate β C-THOUGHT-NODE-001",
version="0.1.0",
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
NODE_SEAL = None
def _now() -> str:
return datetime.now(timezone.utc).isoformat()
def _id(prefix: str = "t") -> str:
return f"{prefix}-{uuid.uuid4().hex[:12]}"
# ββ Lifecycle ββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.on_event("startup")
async def startup():
global NODE_SEAL
seg = uuid.uuid4().hex[:8].upper()
NODE_SEAL = f"β¦ THOUGHT :: PANTHEON-TE :: π§ -{datetime.now().strftime('%Y%m%d')}-{seg[:4]}-{seg[4:]} :: ACTIVE β§"
print(f"\n{'='*60}")
print(f"π§ Thought Engine Node β Phase 1 Sovereign Substrate")
print(f" Seal: {NODE_SEAL}")
print(f" Time: {_now()}")
print(f"{'='*60}\n")
# ββ Identity βββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/")
async def identity():
count = await d1_client.execute_sql("SELECT COUNT(*) as c FROM sessions")
session_count = count[0]["c"] if count else 0
return {
"node": "Thought Engine Node",
"contract": "C-THOUGHT-NODE-001",
"version": "0.1.0",
"seal": NODE_SEAL,
"sessions": session_count,
"status": "ACTIVE",
"timestamp": _now(),
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SESSIONS
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/session")
async def create_session(req: CreateSessionReq):
"""Start a new reasoning session with an initial root thought."""
session_id = _id("ses")
thought_id = _id("th")
title = req.title or req.initial_thought[:80]
# Insert session
await d1_client.execute_sql(
"INSERT INTO sessions (session_id, title, created_by, created_at, status, root_thought_id, active_thought_id) "
"VALUES (?, ?, ?, ?, 'active', ?, ?)",
[session_id, title, req.agent_id, _now(), thought_id, thought_id],
)
# Insert root thought
await d1_client.execute_sql(
"INSERT INTO thought_units (thought_id, session_id, content, thought_class, origin_agent, status, confidence, created_at) "
"VALUES (?, ?, ?, ?, ?, 'open', ?, ?)",
[thought_id, session_id, req.initial_thought, req.thought_class.value, req.agent_id, None, _now()],
)
# Witness event
await d1_client.execute_sql(
"INSERT INTO witness_events (event_id, session_id, thought_id, event_type, actor, detail, created_at) "
"VALUES (?, ?, ?, 'created', ?, 'Session started', ?)",
[_id("ev"), session_id, thought_id, req.agent_id, _now()],
)
return {
"session_id": session_id,
"root_thought_id": thought_id,
"title": title,
"status": "active",
"message": "π§ Reasoning session created.",
}
@app.get("/session/{session_id}")
async def get_session(session_id: str):
"""Retrieve session metadata."""
rows = await d1_client.execute_sql(
"SELECT * FROM sessions WHERE session_id = ?", [session_id]
)
if not rows:
raise HTTPException(404, "Session not found")
return rows[0]
@app.get("/sessions")
async def list_sessions(
status: Optional[str] = Query(None),
limit: int = Query(20, ge=1, le=100),
):
"""List all sessions, optionally filtered by status."""
if status:
rows = await d1_client.execute_sql(
"SELECT * FROM sessions WHERE status = ? ORDER BY created_at DESC LIMIT ?",
[status, limit],
)
else:
rows = await d1_client.execute_sql(
"SELECT * FROM sessions ORDER BY created_at DESC LIMIT ?", [limit]
)
return {"total": len(rows), "sessions": rows}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# THOUGHTS
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/session/{session_id}/thought")
async def add_thought(session_id: str, req: AddThoughtReq):
"""Add a reasoning step to the session's active chain."""
# Verify session exists
ses = await d1_client.execute_sql(
"SELECT * FROM sessions WHERE session_id = ?", [session_id]
)
if not ses:
raise HTTPException(404, "Session not found")
thought_id = _id("th")
parent_id = req.parent_thought_id or ses[0]["active_thought_id"]
# Insert thought unit
await d1_client.execute_sql(
"INSERT INTO thought_units (thought_id, session_id, content, thought_class, origin_agent, status, confidence, created_at) "
"VALUES (?, ?, ?, ?, ?, 'open', ?, ?)",
[thought_id, session_id, req.content, req.thought_class.value, req.agent_id, req.confidence, _now()],
)
# Insert edge from parent
await d1_client.execute_sql(
"INSERT INTO thought_edges (edge_id, session_id, source_id, target_id, relation, created_at) "
"VALUES (?, ?, ?, ?, 'derives_from', ?)",
[_id("ed"), session_id, parent_id, thought_id, _now()],
)
# Update active pointer
await d1_client.execute_sql(
"UPDATE sessions SET active_thought_id = ?, updated_at = ? WHERE session_id = ?",
[thought_id, _now(), session_id],
)
# Witness
await d1_client.execute_sql(
"INSERT INTO witness_events (event_id, session_id, thought_id, event_type, actor, detail, created_at) "
"VALUES (?, ?, ?, 'created', ?, ?, ?)",
[_id("ev"), session_id, thought_id, req.agent_id, f"Added {req.thought_class.value}", _now()],
)
return {
"thought_id": thought_id,
"parent_id": parent_id,
"thought_class": req.thought_class.value,
"message": f"β
Thought added to session.",
}
@app.get("/session/{session_id}/thoughts")
async def list_thoughts(session_id: str):
"""List all thought units in a session."""
rows = await d1_client.execute_sql(
"SELECT * FROM thought_units WHERE session_id = ? ORDER BY created_at ASC",
[session_id],
)
return {"session_id": session_id, "total": len(rows), "thoughts": rows}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# FORKING (Git-for-Thought Branching)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/session/{session_id}/fork")
async def fork_thought(session_id: str, req: ForkThoughtReq):
"""Fork a thought chain β create a branch for alternative exploration."""
# Verify source thought
source = await d1_client.execute_sql(
"SELECT * FROM thought_units WHERE thought_id = ? AND session_id = ?",
[req.source_thought_id, session_id],
)
if not source:
raise HTTPException(404, "Source thought not found in this session")
fork_id = _id("th")
src = source[0]
# Create the forked thought node (copy of source with new id)
await d1_client.execute_sql(
"INSERT INTO thought_units (thought_id, session_id, content, thought_class, origin_agent, status, confidence, created_at, metadata) "
"VALUES (?, ?, ?, ?, ?, 'open', ?, ?, ?)",
[fork_id, session_id, src["content"], src["thought_class"], req.agent_id, src.get("confidence"),
_now(), json.dumps({"forked_from": req.source_thought_id, "branch_label": req.branch_label})],
)
# Edge: forks_from
await d1_client.execute_sql(
"INSERT INTO thought_edges (edge_id, session_id, source_id, target_id, relation, created_at) "
"VALUES (?, ?, ?, ?, 'forks_from', ?)",
[_id("ed"), session_id, req.source_thought_id, fork_id, _now()],
)
# Move active pointer to the fork
await d1_client.execute_sql(
"UPDATE sessions SET active_thought_id = ?, updated_at = ? WHERE session_id = ?",
[fork_id, _now(), session_id],
)
# Witness
await d1_client.execute_sql(
"INSERT INTO witness_events (event_id, session_id, thought_id, event_type, actor, detail, created_at) "
"VALUES (?, ?, ?, 'forked', ?, ?, ?)",
[_id("ev"), session_id, fork_id, req.agent_id, f"Forked from {req.source_thought_id} as '{req.branch_label}'", _now()],
)
return {
"forked_thought_id": fork_id,
"source_thought_id": req.source_thought_id,
"branch_label": req.branch_label,
"message": f"πΏ Forked thought chain: {req.branch_label}",
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# PROPOSALS (Git-for-Thought PRs)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/session/{session_id}/proposal")
async def create_proposal(session_id: str, req: CreateProposalReq):
"""Submit a thought proposal (PR) branching from a parent."""
parent = await d1_client.execute_sql(
"SELECT * FROM thought_units WHERE thought_id = ? AND session_id = ?",
[req.parent_thought_id, session_id],
)
if not parent:
raise HTTPException(404, "Parent thought not found")
proposal_id = _id("pr")
# Insert proposal thought
await d1_client.execute_sql(
"INSERT INTO thought_units (thought_id, session_id, content, thought_class, origin_agent, status, confidence, created_at, metadata) "
"VALUES (?, ?, ?, 'proposal', ?, 'proposed', NULL, ?, ?)",
[proposal_id, session_id, req.content, req.agent_id, _now(),
json.dumps({"proposal_note": req.note, "target_branch": req.parent_thought_id})],
)
# Edge
await d1_client.execute_sql(
"INSERT INTO thought_edges (edge_id, session_id, source_id, target_id, relation, created_at) "
"VALUES (?, ?, ?, ?, 'derives_from', ?)",
[_id("ed"), session_id, req.parent_thought_id, proposal_id, _now()],
)
# Review record
await d1_client.execute_sql(
"INSERT INTO thought_reviews (review_id, session_id, thought_id, action, actor, reason, created_at) "
"VALUES (?, ?, ?, 'propose', ?, ?, ?)",
[_id("rv"), session_id, proposal_id, req.agent_id, req.note, _now()],
)
return {
"proposal_id": proposal_id,
"parent_id": req.parent_thought_id,
"status": "proposed",
"message": f"π Proposal submitted by {req.agent_id}",
}
@app.get("/session/{session_id}/proposals")
async def list_proposals(session_id: str):
"""List all pending proposals in a session."""
rows = await d1_client.execute_sql(
"SELECT * FROM thought_units WHERE session_id = ? AND status = 'proposed' ORDER BY created_at ASC",
[session_id],
)
return {"session_id": session_id, "total": len(rows), "proposals": rows}
@app.post("/session/{session_id}/proposal/{proposal_id}/review")
async def review_proposal(session_id: str, proposal_id: str, req: ReviewProposalReq):
"""Accept, reject, or supersede a proposal."""
proposal = await d1_client.execute_sql(
"SELECT * FROM thought_units WHERE thought_id = ? AND session_id = ? AND status = 'proposed'",
[proposal_id, session_id],
)
if not proposal:
raise HTTPException(404, "Proposal not found or not in 'proposed' status")
new_status_map = {
ReviewAction.ACCEPT: "accepted",
ReviewAction.REJECT: "rejected",
ReviewAction.SUPERSEDE: "superseded",
}
new_status = new_status_map.get(req.action)
if not new_status:
raise HTTPException(400, "Invalid review action for this endpoint")
# Update thought status
await d1_client.execute_sql(
"UPDATE thought_units SET status = ? WHERE thought_id = ?",
[new_status, proposal_id],
)
# Review record
await d1_client.execute_sql(
"INSERT INTO thought_reviews (review_id, session_id, thought_id, action, actor, reason, created_at) "
"VALUES (?, ?, ?, ?, ?, ?, ?)",
[_id("rv"), session_id, proposal_id, req.action.value, req.actor, req.reason, _now()],
)
# If accepted, move active pointer
if req.action == ReviewAction.ACCEPT:
await d1_client.execute_sql(
"UPDATE sessions SET active_thought_id = ?, updated_at = ? WHERE session_id = ?",
[proposal_id, _now(), session_id],
)
# Witness
await d1_client.execute_sql(
"INSERT INTO witness_events (event_id, session_id, thought_id, event_type, actor, detail, created_at) "
"VALUES (?, ?, ?, 'reviewed', ?, ?, ?)",
[_id("ev"), session_id, proposal_id, req.actor,
f"{req.action.value}: {req.reason or 'No reason given'}", _now()],
)
return {
"proposal_id": proposal_id,
"new_status": new_status,
"action": req.action.value,
"message": f"{'β‘ Merged' if req.action == ReviewAction.ACCEPT else 'β Rejected' if req.action == ReviewAction.REJECT else 'π Superseded'}: {proposal_id}",
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# TREE VISUALIZATION
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/session/{session_id}/tree")
async def get_tree(session_id: str):
"""Render the full reasoning tree for a session."""
ses = await d1_client.execute_sql(
"SELECT * FROM sessions WHERE session_id = ?", [session_id]
)
if not ses:
raise HTTPException(404, "Session not found")
thoughts = await d1_client.execute_sql(
"SELECT * FROM thought_units WHERE session_id = ? ORDER BY created_at ASC",
[session_id],
)
edges = await d1_client.execute_sql(
"SELECT * FROM thought_edges WHERE session_id = ?", [session_id]
)
# Build adjacency map (parent -> children)
children_map: dict[str, list[str]] = {}
for edge in edges:
src = edge["source_id"]
tgt = edge["target_id"]
children_map.setdefault(src, []).append(tgt)
thought_map = {t["thought_id"]: t for t in thoughts}
def build_node(tid: str) -> dict:
t = thought_map.get(tid, {})
return {
"thought_id": tid,
"content": t.get("content", ""),
"thought_class": t.get("thought_class", ""),
"status": t.get("status", ""),
"origin_agent": t.get("origin_agent", ""),
"children": [build_node(cid) for cid in children_map.get(tid, [])],
}
root_id = ses[0].get("root_thought_id")
tree = build_node(root_id) if root_id else {}
return {
"session_id": session_id,
"title": ses[0].get("title"),
"total_thoughts": len(thoughts),
"total_edges": len(edges),
"active_thought_id": ses[0].get("active_thought_id"),
"tree": tree,
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SEARCH & EDGES
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/session/{session_id}/search")
async def search_thoughts(session_id: str, req: SearchReq):
"""Search thoughts in a session by content pattern."""
rows = await d1_client.execute_sql(
"SELECT * FROM thought_units WHERE session_id = ? AND content LIKE ? ORDER BY created_at ASC",
[session_id, f"%{req.pattern}%"],
)
return {"session_id": session_id, "pattern": req.pattern, "matches": len(rows), "results": rows}
@app.get("/session/{session_id}/edges")
async def list_edges(session_id: str):
"""List all edges (relationships) in a session."""
rows = await d1_client.execute_sql(
"SELECT * FROM thought_edges WHERE session_id = ? ORDER BY created_at ASC",
[session_id],
)
return {"session_id": session_id, "total": len(rows), "edges": rows}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# WITNESS / PROVENANCE
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/session/{session_id}/witness")
async def list_witness_events(session_id: str, limit: int = Query(50, ge=1, le=200)):
"""Get the audit trail for a session."""
rows = await d1_client.execute_sql(
"SELECT * FROM witness_events WHERE session_id = ? ORDER BY created_at DESC LIMIT ?",
[session_id, limit],
)
return {"session_id": session_id, "total": len(rows), "events": rows}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# HEALTH
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/health")
async def health():
return {"status": "ok", "timestamp": _now()}
|