mirror of
https://gitcode.com/JianFeeeee/TrulyMEM-TrueHumanMEM.git
synced 2026-09-20 08:58:15 +00:00
feat: 实现 OpenClaw 纯图数据库对话 Demo
- 基于 DeepSeek API Tool Calls 实现无传统上下文的多轮对话 - 实现全部 6 个 memory 工具: - memory_recall: 支持时间范围、多跳路径、会话过滤 - memory_commit: 批量三元组写入、时间标记 - memory_purge: 软删除 + superseded 纠错机制 - memory_introspect: 会话元数据、记忆热点、关系分布 - memory_archive: 归档旧关系 - memory_cleanup: 物理清理孤立节点 - Neo4j 真实数据库集成 - 添加各发行版一键启动脚本 (Ubuntu/CentOS/Docker)
This commit is contained in:
653
openclaw_neo4j_demo.py
Normal file
653
openclaw_neo4j_demo.py
Normal file
@ -0,0 +1,653 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
OpenClaw 纯图数据库调用 Demo - Neo4j 真实数据库版本
|
||||
基于 DeepSeek API Tool Calls 实现摒弃传统上下文的自主记忆多轮对话
|
||||
"""
|
||||
|
||||
import json
|
||||
import os
|
||||
import uuid
|
||||
from datetime import datetime
|
||||
|
||||
DEEPSEEK_API_KEY = os.environ.get("DEEPSEEK_API_KEY", "your-api-key-here")
|
||||
DEEPSEEK_BASE_URL = "https://api.deepseek.com"
|
||||
MODEL_NAME = "deepseek-chat"
|
||||
|
||||
NEO4J_URI = os.environ.get("NEO4J_URI", "bolt://localhost:7687")
|
||||
NEO4J_USER = os.environ.get("NEO4J_USER", "neo4j")
|
||||
NEO4J_PASSWORD = os.environ.get("NEO4J_PASSWORD", "neo4j")
|
||||
|
||||
CURRENT_SESSION_ID = f"session-{datetime.now().strftime('%Y%m%d')}-{uuid.uuid4().hex[:4]}"
|
||||
CURRENT_TURN = 0
|
||||
|
||||
TOOLS = [
|
||||
{
|
||||
"type": "function",
|
||||
"function": {
|
||||
"name": "memory_recall",
|
||||
"description": "当你对当前输入中的实体、指代、或关系不确定时,调用此工具检索相关记忆。输入为自然语言查询意图,系统将返回相关子图。支持时间范围和多跳路径查询。",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"query_intent": {"type": "string", "description": "模型用自然语言描述想查什么"},
|
||||
"seed_entities": {"type": "array", "items": {"type": "string"}, "description": "可选:已识别的实体ID"},
|
||||
"depth": {"type": "integer", "description": "期望的遍历深度,由模型根据复杂度决定,默认2"},
|
||||
"time_range": {"type": "object", "description": "可选:时间范围筛选", "properties": {"days": {"type": "integer", "description": "最近N天"}}},
|
||||
"session_filter": {"type": "string", "description": "可选:限定特定会话ID"}
|
||||
},
|
||||
"required": ["query_intent"]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "function",
|
||||
"function": {
|
||||
"name": "memory_commit",
|
||||
"description": "当你认为当前对话包含对未来轮次有价值的信息时,将抽取的三元组写入图库。仅在信息具有跨轮次引用潜力时调用。支持批量写入。",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"triplets": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"subject": {"type": "string"},
|
||||
"relation": {"type": "string"},
|
||||
"object": {"type": "string"},
|
||||
"confidence": {"type": "number"}
|
||||
},
|
||||
"required": ["subject", "relation", "object"]
|
||||
},
|
||||
"description": "要写入的三元组列表"
|
||||
},
|
||||
"entity_types": {"type": "array", "items": {"type": "string"}, "description": "模型动态提议的类型"},
|
||||
"temporal_tag": {"type": "string", "description": "可选:时间标记(如'2026-04-08')"}
|
||||
},
|
||||
"required": ["triplets"]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "function",
|
||||
"function": {
|
||||
"name": "memory_purge",
|
||||
"description": "当你发现记忆中的信息与当前认知矛盾,或用户明确要求更正时,删除指定关系。优先于memory_commit执行以维护一致性。",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"criteria": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"subject_contains": {"type": "string"},
|
||||
"relation_type": {"type": "string"},
|
||||
"target_contains": {"type": "string"},
|
||||
"time_before": {"type": "string"},
|
||||
"session_id": {"type": "string"}
|
||||
},
|
||||
"description": "删除条件"
|
||||
},
|
||||
"mode": {"type": "string", "enum": ["soft", "supersede"], "description": "soft=逻辑删除, supersede=纠错替代", "default": "soft"},
|
||||
"new_relation": {"type": "object", "description": "supersede模式时的新关系", "properties": {"relation": {"type": "string"}, "target": {"type": "string"}}}
|
||||
},
|
||||
"required": ["criteria"]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "function",
|
||||
"function": {
|
||||
"name": "memory_introspect",
|
||||
"description": "检索当前对话会话的元数据:已讨论的实体、关系密度、记忆热点。用于自我监控信息缺口。",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"session_id": {"type": "string", "description": "可选:指定会话ID,默认当前会话"}
|
||||
},
|
||||
"required": []
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "function",
|
||||
"function": {
|
||||
"name": "memory_archive",
|
||||
"description": "归档N天前的非活跃关系,用于清理低频查询数据。",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"days": {"type": "integer", "description": "归档多少天前的关系,默认30天"}
|
||||
},
|
||||
"required": []
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "function",
|
||||
"function": {
|
||||
"name": "memory_cleanup",
|
||||
"description": "物理清理已删除状态超过90天的关系和孤立节点。谨慎使用。",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"dry_run": {"type": "boolean", "description": "仅预览不实际删除", "default": True}
|
||||
},
|
||||
"required": []
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
class Neo4jGraph:
|
||||
def __init__(self, uri: str, user: str, password: str):
|
||||
from neo4j import GraphDatabase
|
||||
self.driver = GraphDatabase.driver(uri, auth=(user, password))
|
||||
|
||||
def close(self):
|
||||
self.driver.close()
|
||||
|
||||
def ensure_constraints(self):
|
||||
with self.driver.session() as session:
|
||||
session.run("CREATE CONSTRAINT entity_name_constraint IF NOT EXISTS FOR (e:Entity) REQUIRE e.name IS UNIQUE")
|
||||
session.run("CREATE CONSTRAINT session_id_constraint IF NOT EXISTS FOR (s:Session) REQUIRE s.session_id IS UNIQUE")
|
||||
|
||||
session.run("CREATE INDEX rel_created_at IF NOT EXISTS FOR ()-[r:RELATES]-() ON r.created_at")
|
||||
session.run("CREATE INDEX rel_session_id IF NOT EXISTS FOR ()-[r:RELATES]-() ON r.session_id")
|
||||
session.run("CREATE INDEX rel_type IF NOT EXISTS FOR ()-[r:RELATES]-() ON r.type")
|
||||
session.run("CREATE INDEX rel_status IF NOT EXISTS FOR ()-[r:RELATES]-() ON r.status")
|
||||
session.run("CREATE INDEX rel_date_bucket IF NOT EXISTS FOR ()-[r:RELATES]-() ON r.date_bucket")
|
||||
session.run("CREATE INDEX entity_type IF NOT EXISTS FOR (e:Entity) ON e.type")
|
||||
session.run("CREATE INDEX entity_mention_count IF NOT EXISTS FOR (e:Entity) ON e.mention_count")
|
||||
|
||||
def recall(self, query_intent: str, seed_entities: list = None, depth: int = 2,
|
||||
time_range: dict = None, session_filter: str = None) -> dict:
|
||||
with self.driver.session() as session:
|
||||
keywords = [w for w in query_intent.lower().split() if len(w) > 2]
|
||||
|
||||
params = {"session_id": CURRENT_SESSION_ID}
|
||||
cond_parts = ["r.status = 'active'"]
|
||||
|
||||
if session_filter:
|
||||
cond_parts.append("r.session_id = $target_session")
|
||||
params["target_session"] = session_filter
|
||||
|
||||
if keywords:
|
||||
cond_parts.append("ANY(k IN $keywords WHERE toLower(e.name) CONTAINS k OR toLower(e.type) CONTAINS k)")
|
||||
params["keywords"] = keywords
|
||||
|
||||
if seed_entities:
|
||||
cond_parts.append("e.name IN $seed")
|
||||
params["seed"] = seed_entities
|
||||
|
||||
if time_range and "days" in time_range:
|
||||
cond_parts.append(f"r.created_at >= datetime() - duration('P{time_range['days']}D')")
|
||||
|
||||
where_clause = " AND ".join(cond_parts)
|
||||
|
||||
if depth > 1:
|
||||
cypher = f"""
|
||||
MATCH path = (e:Entity)-[r:RELATES*1..{depth}]-(other:Entity)
|
||||
WHERE {where_clause}
|
||||
UNWIND relationships(path) AS rel
|
||||
WITH DISTINCT rel, e, other
|
||||
RETURN e, rel, other
|
||||
ORDER BY rel.created_at DESC
|
||||
LIMIT 30
|
||||
"""
|
||||
else:
|
||||
cypher = f"""
|
||||
MATCH (e:Entity)-[r:RELATES]-(other:Entity)
|
||||
WHERE {where_clause}
|
||||
RETURN e, r, other
|
||||
ORDER BY r.created_at DESC
|
||||
LIMIT 20
|
||||
"""
|
||||
|
||||
result = session.run(cypher, params)
|
||||
entities, relations = {}, []
|
||||
|
||||
for record in result:
|
||||
e, r, other = record["e"], record["r"], record["other"]
|
||||
if e["name"] not in entities:
|
||||
entities[e["name"]] = {"name": e["name"], "type": e.get("type", "unknown"), "mention_count": e.get("mention_count", 1)}
|
||||
if other["name"] not in entities:
|
||||
entities[other["name"]] = {"name": other["name"], "type": other.get("type", "unknown"), "mention_count": other.get("mention_count", 1)}
|
||||
|
||||
relations.append({
|
||||
"source": e["name"],
|
||||
"target": other["name"],
|
||||
"type": r["type"],
|
||||
"created_at": str(r.get("created_at", "")),
|
||||
"session_id": r.get("session_id", ""),
|
||||
"turn_id": r.get("turn_id", 0),
|
||||
"confidence": r.get("confidence", 1.0)
|
||||
})
|
||||
|
||||
return {"entities": list(entities.values()), "relations": relations[:20]}
|
||||
|
||||
def commit(self, triplets: list, entity_types: list = None, temporal_tag: str = None) -> dict:
|
||||
global CURRENT_TURN
|
||||
with self.driver.session() as session:
|
||||
valid_triplets = [t for t in triplets if t.get("subject") and t.get("relation") and t.get("object")]
|
||||
|
||||
if not valid_triplets:
|
||||
return {"committed_count": 0, "details": []}
|
||||
|
||||
etype = entity_types[0] if entity_types else "unknown"
|
||||
date_bucket = temporal_tag or datetime.now().strftime("%Y-%m-%d")
|
||||
|
||||
results = []
|
||||
for triplet in valid_triplets:
|
||||
subject = triplet.get("subject", "").strip()
|
||||
relation = triplet.get("relation", "").strip()
|
||||
obj = triplet.get("object", "").strip()
|
||||
confidence = triplet.get("confidence", 0.9)
|
||||
|
||||
session.run("""
|
||||
MERGE (s:Entity {name: $subject})
|
||||
ON CREATE SET s.type = $type, s.created_at = datetime(), s.mention_count = 1, s.updated_at = datetime()
|
||||
ON MATCH SET s.mention_count = coalesce(s.mention_count, 0) + 1, s.updated_at = datetime()
|
||||
|
||||
MERGE (t:Entity {name: $object})
|
||||
ON CREATE SET t.type = $type, t.created_at = datetime(), t.mention_count = 1, t.updated_at = datetime()
|
||||
ON MATCH SET t.mention_count = coalesce(t.mention_count, 0) + 1, t.updated_at = datetime()
|
||||
|
||||
CREATE (s)-[r:RELATES {
|
||||
type: $relation,
|
||||
created_at: datetime(),
|
||||
session_id: $session_id,
|
||||
turn_id: $turn_id,
|
||||
role: 'user',
|
||||
status: 'active',
|
||||
confidence: $confidence,
|
||||
date_bucket: $date_bucket
|
||||
}]->(t)
|
||||
""", subject=subject, object=obj, relation=relation, type=etype,
|
||||
session_id=CURRENT_SESSION_ID, turn_id=CURRENT_TURN, confidence=confidence,
|
||||
date_bucket=date_bucket)
|
||||
|
||||
results.append(f"{subject} -[{relation}]-> {obj}")
|
||||
|
||||
return {"committed_count": len(results), "details": results}
|
||||
|
||||
def purge(self, criteria: dict, mode: str = "soft", new_relation: dict = None) -> dict:
|
||||
with self.driver.session() as session:
|
||||
subject_pattern = criteria.get("subject_contains", "")
|
||||
rel_type = criteria.get("relation_type", "")
|
||||
target_pattern = criteria.get("target_contains", "")
|
||||
session_id = criteria.get("session_id", CURRENT_SESSION_ID)
|
||||
|
||||
cond_parts = ["r.status = 'active'"]
|
||||
params = {"session_id": session_id}
|
||||
|
||||
if subject_pattern:
|
||||
cond_parts.append("r.source CONTAINS $subject")
|
||||
params["subject"] = subject_pattern
|
||||
if target_pattern:
|
||||
cond_parts.append("r.target CONTAINS $target")
|
||||
params["target"] = target_pattern
|
||||
if rel_type:
|
||||
cond_parts.append("r.type = $rel_type")
|
||||
params["rel_type"] = rel_type
|
||||
|
||||
where_clause = " AND ".join(cond_parts)
|
||||
|
||||
if mode == "supersede" and new_relation:
|
||||
new_rel = new_relation.get("relation", "")
|
||||
new_target = new_relation.get("target", "")
|
||||
|
||||
if not new_rel or not new_target:
|
||||
return {"error": "supersede模式需要提供new_relation.relation和new_relation.target"}
|
||||
|
||||
result = session.run(f"""
|
||||
MATCH (s:Entity)-[r:RELATES]->(t:Entity)
|
||||
WHERE {where_clause}
|
||||
SET r.status = 'superseded', r.updated_at = datetime()
|
||||
RETURN id(r) as old_id, s.name as source
|
||||
""", params)
|
||||
|
||||
deleted_count = 0
|
||||
for record in result:
|
||||
old_id = record["old_id"]
|
||||
source = record["source"]
|
||||
|
||||
session.run("""
|
||||
MATCH (s:Entity {name: $source})
|
||||
WHERE id(s) = $source_id
|
||||
CREATE (s)-[r:RELATES {
|
||||
type: $new_rel,
|
||||
created_at: datetime(),
|
||||
session_id: $session_id,
|
||||
turn_id: $turn_id,
|
||||
role: 'user',
|
||||
status: 'active',
|
||||
confidence: 0.9,
|
||||
date_bucket: date().isoDate,
|
||||
supersedes: $old_id
|
||||
}]->(t:Entity {name: $new_target})
|
||||
""", source_id=record["s"].element_id, new_rel=new_rel, new_target=new_target,
|
||||
session_id=CURRENT_SESSION_ID, turn_id=CURRENT_TURN, old_id=old_id)
|
||||
deleted_count += 1
|
||||
|
||||
return {"deleted_count": deleted_count, "mode": "supersede", "new_relation": f"{new_relation.get('subject', '')} -[{new_rel}]-> {new_target}"}
|
||||
else:
|
||||
result = session.run(f"""
|
||||
MATCH ()-[r:RELATES]->()
|
||||
WHERE {where_clause}
|
||||
SET r.status = 'deleted', r.updated_at = datetime()
|
||||
RETURN count(r) as deleted
|
||||
""", params)
|
||||
count = result.single()["deleted"]
|
||||
|
||||
return {"deleted_count": count, "mode": "soft"}
|
||||
|
||||
def introspect(self, session_id: str = None) -> dict:
|
||||
target_session = session_id or CURRENT_SESSION_ID
|
||||
|
||||
with self.driver.session() as session:
|
||||
result = session.run("""
|
||||
MATCH (s:Entity)-[r:RELATES]->(t:Entity)
|
||||
WHERE r.session_id = $session_id AND r.status = 'active'
|
||||
RETURN collect(DISTINCT s.name) as source_entities,
|
||||
collect(DISTINCT t.name) as target_entities,
|
||||
count(r) as rel_count,
|
||||
collect(DISTINCT r.type) as rel_types
|
||||
""", session_id=target_session)
|
||||
record = result.single()
|
||||
|
||||
result2 = session.run("""
|
||||
MATCH (e:Entity)
|
||||
RETURN e.name as name, e.mention_count as count, e.type as type
|
||||
ORDER BY e.mention_count DESC
|
||||
LIMIT 10
|
||||
""")
|
||||
hotspots = [(r["name"], r["count"], r["type"]) for r in result2]
|
||||
|
||||
result3 = session.run("""
|
||||
MATCH ()-[r:RELATES]->()
|
||||
WHERE r.session_id = $session_id
|
||||
RETURN r.type as type, count(*) as count
|
||||
ORDER BY count DESC
|
||||
""", session_id=target_session)
|
||||
relation_distribution = {r["type"]: r["count"] for r in result3}
|
||||
|
||||
return {
|
||||
"session_id": target_session,
|
||||
"total_turns": CURRENT_TURN,
|
||||
"entities_discussed": list(set((record["source_entities"] or []) + (record["target_entities"] or []))),
|
||||
"relation_count": record["rel_count"] if record else 0,
|
||||
"relation_types": record["rel_types"] if record else [],
|
||||
"memory_hotspots": hotspots,
|
||||
"relation_distribution": relation_distribution
|
||||
}
|
||||
|
||||
def archive(self, days: int = 30) -> dict:
|
||||
with self.driver.session() as session:
|
||||
result = session.run("""
|
||||
MATCH ()-[r:RELATES]->()
|
||||
WHERE r.status = 'active' AND r.created_at < datetime() - duration('P' + $days + 'D')
|
||||
SET r.status = 'archived', r.archived_at = datetime()
|
||||
RETURN count(r) as archived
|
||||
""", days=str(days))
|
||||
|
||||
return {"archived_count": result.single()["archived"], "days": days}
|
||||
|
||||
def cleanup(self, dry_run: bool = True) -> dict:
|
||||
with self.driver.session() as session:
|
||||
result1 = session.run("""
|
||||
MATCH ()-[r:RELATES]->()
|
||||
WHERE r.status = 'deleted' AND r.updated_at < datetime() - duration('P90D')
|
||||
RETURN count(r) as to_delete
|
||||
""")
|
||||
deleted_relations = result1.single()["to_delete"]
|
||||
|
||||
result2 = session.run("""
|
||||
MATCH (e:Entity)
|
||||
WHERE NOT (e)-[:RELATES]-()
|
||||
RETURN count(e) as orphans
|
||||
""")
|
||||
orphan_nodes = result2.single()["orphans"]
|
||||
|
||||
if not dry_run and deleted_relations > 0:
|
||||
session.run("""
|
||||
MATCH ()-[r:RELATES]->()
|
||||
WHERE r.status = 'deleted' AND r.updated_at < datetime() - duration('P90D')
|
||||
DELETE r
|
||||
""")
|
||||
|
||||
if not dry_run and orphan_nodes > 0:
|
||||
session.run("""
|
||||
MATCH (e:Entity)
|
||||
WHERE NOT (e)-[:RELATES]-()
|
||||
DELETE e
|
||||
""")
|
||||
|
||||
return {
|
||||
"dry_run": dry_run,
|
||||
"deleted_relations": deleted_relations,
|
||||
"orphan_nodes": orphan_nodes,
|
||||
"action_taken": not dry_run
|
||||
}
|
||||
|
||||
|
||||
def execute_tool(graph: Neo4jGraph, tool_name: str, arguments: dict) -> str:
|
||||
print(f"\n[工具调用] {tool_name}")
|
||||
print(f"[参数] {json.dumps(arguments, ensure_ascii=False, indent=2)}")
|
||||
|
||||
try:
|
||||
if tool_name == "memory_recall":
|
||||
result = graph.recall(
|
||||
query_intent=arguments.get("query_intent", ""),
|
||||
seed_entities=arguments.get("seed_entities"),
|
||||
depth=arguments.get("depth", 2),
|
||||
time_range=arguments.get("time_range"),
|
||||
session_filter=arguments.get("session_filter")
|
||||
)
|
||||
return format_recall_result(result)
|
||||
|
||||
elif tool_name == "memory_commit":
|
||||
result = graph.commit(
|
||||
triplets=arguments.get("triplets", []),
|
||||
entity_types=arguments.get("entity_types"),
|
||||
temporal_tag=arguments.get("temporal_tag")
|
||||
)
|
||||
return json.dumps(result, ensure_ascii=False, default=str)
|
||||
|
||||
elif tool_name == "memory_purge":
|
||||
result = graph.purge(
|
||||
criteria=arguments.get("criteria", {}),
|
||||
mode=arguments.get("mode", "soft"),
|
||||
new_relation=arguments.get("new_relation")
|
||||
)
|
||||
return json.dumps(result, ensure_ascii=False, default=str)
|
||||
|
||||
elif tool_name == "memory_introspect":
|
||||
result = graph.introspect(session_id=arguments.get("session_id"))
|
||||
return json.dumps(result, ensure_ascii=False, default=str)
|
||||
|
||||
elif tool_name == "memory_archive":
|
||||
result = graph.archive(days=arguments.get("days", 30))
|
||||
return json.dumps(result, ensure_ascii=False, default=str)
|
||||
|
||||
elif tool_name == "memory_cleanup":
|
||||
result = graph.cleanup(dry_run=arguments.get("dry_run", True))
|
||||
return json.dumps(result, ensure_ascii=False, default=str)
|
||||
|
||||
return f"未知工具: {tool_name}"
|
||||
|
||||
except Exception as e:
|
||||
return f"工具执行错误: {str(e)}"
|
||||
|
||||
|
||||
def format_recall_result(result: dict) -> str:
|
||||
lines = ["===== 图数据库检索结果 ====="]
|
||||
|
||||
if result.get("entities"):
|
||||
lines.append(f"\n相关实体 ({len(result['entities'])} 个):")
|
||||
for e in result["entities"]:
|
||||
lines.append(f" - {e['name']} (类型: {e.get('type', 'unknown')}, 提及: {e.get('mention_count', 1)}次)")
|
||||
|
||||
if result.get("relations"):
|
||||
lines.append(f"\n相关关系 ({len(result['relations'])} 条):")
|
||||
for r in result["relations"]:
|
||||
lines.append(f" - {r['source']} --[{r['type']}]--> {r['target']}")
|
||||
created = r.get("created_at", "N/A")
|
||||
if created and created != "N/A":
|
||||
created = created[:19] if "T" in str(created) else str(created)
|
||||
lines.append(f" 时间: {created}, 会话: {r.get('session_id', 'N/A')[:20]}, 轮次: {r.get('turn_id', 0)}, 置信度: {r.get('confidence', 1.0)}")
|
||||
|
||||
if not result.get("entities") and not result.get("relations"):
|
||||
lines.append("\n(未找到相关记忆)")
|
||||
|
||||
lines.append("=" * 35)
|
||||
return "\n".join(lines)
|
||||
|
||||
|
||||
class OpenClawClient:
|
||||
def __init__(self, api_key: str, base_url: str, graph: Neo4jGraph):
|
||||
from openai import OpenAI
|
||||
self.client = OpenAI(api_key=api_key, base_url=base_url)
|
||||
self.graph = graph
|
||||
self.tools = TOOLS
|
||||
self.system_prompt = self._build_system_prompt()
|
||||
|
||||
def _build_system_prompt(self) -> str:
|
||||
return """你是 OpenClaw 的自主记忆控制器。你的上下文窗口为空,你是无状态的。
|
||||
|
||||
你唯一的信息来源是图数据库中的记忆,以及用户当前的输入。
|
||||
|
||||
可用工具:
|
||||
1. memory_recall: 当遇到指代、未知实体、或需要验证的事实时调用
|
||||
2. memory_commit: 仅当信息满足以下条件时写入:
|
||||
- 用户明确偏好/属性("我喜欢Python")
|
||||
- 跨轮次可引用的事实("项目X的截止日期是...")
|
||||
- 推理链的关键中间结论
|
||||
不要写入:临时例子、闲聊寒暄、已存储的冗余信息
|
||||
3. memory_purge: 检测到用户更正或逻辑矛盾时立即执行
|
||||
4. memory_introspect: 检查当前会话的讨论情况
|
||||
|
||||
决策原则:
|
||||
- 不确定性驱动查询:只要存在歧义,优先recall而非猜测
|
||||
- 写入抑制:宁可少写,不要写噪
|
||||
|
||||
记住:你没有传统上下文,每次回复只能依赖:
|
||||
1. 用户当前输入
|
||||
2. 你主动调用 memory 工具获取的历史记忆
|
||||
3. 你之前调用工具的结果"""
|
||||
|
||||
def send_message(self, user_input: str, tool_results: list = None) -> dict:
|
||||
global CURRENT_TURN
|
||||
|
||||
messages = [{"role": "system", "content": self.system_prompt}]
|
||||
|
||||
if tool_results:
|
||||
messages.extend(tool_results)
|
||||
|
||||
messages.append({"role": "user", "content": user_input})
|
||||
|
||||
response = self.client.chat.completions.create(
|
||||
model=MODEL_NAME,
|
||||
messages=messages,
|
||||
tools=self.tools,
|
||||
tool_choice="auto"
|
||||
)
|
||||
|
||||
return response
|
||||
|
||||
def chat_loop(self):
|
||||
global CURRENT_TURN
|
||||
|
||||
print("\n" + "=" * 60)
|
||||
print("OpenClaw 纯图数据库对话 Demo (Neo4j)")
|
||||
print("=" * 60)
|
||||
print(f"会话ID: {CURRENT_SESSION_ID}")
|
||||
print(f"Neo4j: {NEO4J_URI}")
|
||||
print("输入 quit/exit 退出")
|
||||
print("=" * 60 + "\n")
|
||||
|
||||
tool_results = []
|
||||
|
||||
while True:
|
||||
try:
|
||||
user_input = input("\n[你] ").strip()
|
||||
if not user_input:
|
||||
continue
|
||||
if user_input.lower() in ["quit", "exit", "退出"]:
|
||||
print("\n[系统] 再见!")
|
||||
break
|
||||
|
||||
CURRENT_TURN += 1
|
||||
print(f"\n[轮次 {CURRENT_TURN}] 发送请求...")
|
||||
|
||||
response = self.send_message(user_input, tool_results)
|
||||
message = response.choices[0].message
|
||||
|
||||
while message.tool_calls:
|
||||
print(f"\n[模型] {message.content or '(thinking...)'}")
|
||||
|
||||
for tool_call in message.tool_calls:
|
||||
tool_name = tool_call.function.name
|
||||
tool_args = json.loads(tool_call.function.arguments)
|
||||
tool_id = tool_call.id
|
||||
|
||||
result = execute_tool(self.graph, tool_name, tool_args)
|
||||
print(f"\n[工具结果] {result}")
|
||||
|
||||
tool_results.append({
|
||||
"role": "tool",
|
||||
"tool_call_id": tool_id,
|
||||
"content": result
|
||||
})
|
||||
|
||||
message = self.client.chat.completions.create(
|
||||
model=MODEL_NAME,
|
||||
messages=[{"role": "system", "content": self.system_prompt}] + tool_results +
|
||||
[{"role": "user", "content": user_input}],
|
||||
tools=self.tools
|
||||
).choices[0].message
|
||||
|
||||
final_content = message.content or "(无回复)"
|
||||
print(f"\n[模型] {final_content}")
|
||||
|
||||
tool_results.append({"role": "assistant", "content": final_content})
|
||||
|
||||
if len(tool_results) > 10:
|
||||
tool_results = [t for t in tool_results if t.get("role") in ["tool", "user"]]
|
||||
|
||||
except KeyboardInterrupt:
|
||||
print("\n\n[系统] 中断退出")
|
||||
break
|
||||
except Exception as e:
|
||||
print(f"\n[错误] {str(e)}")
|
||||
|
||||
|
||||
def main():
|
||||
print("OpenClaw Demo - Neo4j 纯图数据库调用的多轮对话")
|
||||
print("-" * 40)
|
||||
|
||||
if DEEPSEEK_API_KEY == "your-api-key-here":
|
||||
print("请设置 DEEPSEEK_API_KEY 环境变量")
|
||||
print(" export DEEPSEEK_API_KEY='your-actual-key'")
|
||||
print()
|
||||
|
||||
print(f"Neo4j 配置: {NEO4J_URI}")
|
||||
print("如需修改,请设置环境变量: NEO4J_URI, NEO4J_USER, NEO4J_PASSWORD")
|
||||
print()
|
||||
|
||||
try:
|
||||
graph = Neo4jGraph(NEO4J_URI, NEO4J_USER, NEO4J_PASSWORD)
|
||||
graph.ensure_constraints()
|
||||
print("[Info] Neo4j 连接成功\n")
|
||||
except Exception as e:
|
||||
print(f"[Error] Neo4j 连接失败: {e}")
|
||||
print("请确保 Neo4j 已启动,或运行 scripts/ 下的安装脚本")
|
||||
return
|
||||
|
||||
client = OpenClawClient(DEEPSEEK_API_KEY, DEEPSEEK_BASE_URL, graph)
|
||||
client.chat_loop()
|
||||
graph.close()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
76
scripts/install_neo4j_centos.sh
Normal file
76
scripts/install_neo4j_centos.sh
Normal file
@ -0,0 +1,76 @@
|
||||
#!/bin/bash
|
||||
# Neo4j 一键安装脚本 - CentOS/RHEL/Fedora
|
||||
|
||||
set -e
|
||||
|
||||
echo "========================================"
|
||||
echo "Neo4j 一键安装脚本 - CentOS/RHEL/Fedora"
|
||||
echo "========================================"
|
||||
|
||||
if [ "$EUID" -eq 0 ]; then
|
||||
SUDO=""
|
||||
else
|
||||
SUDO="sudo"
|
||||
fi
|
||||
|
||||
# 1. 检查 Java
|
||||
echo "[1/5] 检查 Java 环境..."
|
||||
if command -v java &> /dev/null; then
|
||||
echo " 已安装: $(java -version 2>&1 | head -n 1)"
|
||||
else
|
||||
echo " 安装 OpenJDK 17..."
|
||||
$SUDO yum install -y java-17-openjdk-headless
|
||||
fi
|
||||
|
||||
# 2. 添加 Neo4j 源
|
||||
echo "[2/5] 添加 Neo4j 源..."
|
||||
$SUDO cat > /etc/yum.repos.d/neo4j.repo << 'EOF'
|
||||
[neo4j]
|
||||
name=Neo4j Repository
|
||||
baseurl=https://yum.neo4j.com/stable
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
gpgkey=https://debian.neo4j.com/neotechnology.gpg.key
|
||||
EOF
|
||||
|
||||
# 3. 安装
|
||||
echo "[3/5] 安装 Neo4j..."
|
||||
$SUDO yum install -y neo4j
|
||||
|
||||
# 4. 配置
|
||||
echo "[4/5] 配置 Neo4j..."
|
||||
$SUDO sed -i 's/#server.default_listen_address=0.0.0.0/server.default_listen_address=0.0.0.0/' /etc/neo4j/neo4j.conf
|
||||
|
||||
# 5. 启动
|
||||
echo "[5/5] 启动 Neo4j..."
|
||||
$SUDO systemctl enable neo4j
|
||||
$SUDO systemctl start neo4j
|
||||
sleep 3
|
||||
|
||||
# 6. 配置 Python 虚拟环境
|
||||
echo "[6/6] 配置 Python 虚拟环境..."
|
||||
PROJECT_DIR="$HOME/openclaw"
|
||||
mkdir -p "$PROJECT_DIR"
|
||||
cd "$PROJECT_DIR"
|
||||
python3 -m venv venv
|
||||
source venv/bin/activate
|
||||
pip install --upgrade pip
|
||||
pip install neo4j openai
|
||||
|
||||
cat > .env << 'EOF'
|
||||
DEEPSEEK_API_KEY=your-api-key-here
|
||||
NEO4J_URI=bolt://localhost:7687
|
||||
NEO4J_USER=neo4j
|
||||
NEO4J_PASSWORD=neo4j
|
||||
EOF
|
||||
|
||||
echo ""
|
||||
echo "========================================"
|
||||
echo "安装完成!"
|
||||
echo "========================================"
|
||||
echo "控制台: http://localhost:7474"
|
||||
echo "连接: cypher-shell -u neo4j -p neo4j"
|
||||
echo ""
|
||||
echo "启动对话:"
|
||||
echo " cd $PROJECT_DIR && source venv/bin/activate"
|
||||
echo " python -m openclaw_neo4j_demo"
|
||||
148
scripts/install_neo4j_ubuntu.sh
Normal file
148
scripts/install_neo4j_ubuntu.sh
Normal file
@ -0,0 +1,148 @@
|
||||
#!/bin/bash
|
||||
# =============================================================================
|
||||
# Neo4j 一键安装配置脚本 - Ubuntu/Debian
|
||||
# =============================================================================
|
||||
|
||||
set -e
|
||||
|
||||
echo "========================================"
|
||||
echo "Neo4j 一键安装脚本 - Ubuntu/Debian"
|
||||
echo "========================================"
|
||||
|
||||
# 检测是否为 root
|
||||
if [ "$EUID" -eq 0 ]; then
|
||||
echo "[Info] Running as root"
|
||||
SUDO=""
|
||||
else
|
||||
echo "[Info] Running as user, will use sudo"
|
||||
SUDO="sudo"
|
||||
fi
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 1. 检查 Java 环境
|
||||
# -------------------------------------------------------------------------
|
||||
echo "[1/6] 检查 Java 环境..."
|
||||
|
||||
if command -v java &> /dev/null; then
|
||||
java_version=$(java -version 2>&1 | head -n 1)
|
||||
echo " 已安装: $java_version"
|
||||
else
|
||||
echo " 未检测到 Java,安装 OpenJDK 17..."
|
||||
$SUDO apt update
|
||||
$SUDO apt install -y openjdk-17-jre-headless
|
||||
echo " Java 安装完成"
|
||||
fi
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 2. 添加 Neo4j apt 源
|
||||
# -------------------------------------------------------------------------
|
||||
echo "[2/6] 添加 Neo4j apt 源..."
|
||||
|
||||
# 安装依赖
|
||||
$SUDO apt install -y curl gnupg
|
||||
|
||||
# 添加 GPG key
|
||||
curl -fsSL https://debian.neo4j.com/neotechnology.gpg.key | $SUDO gpg --dearmor -o /usr/share/keyrings/neo4j.gpg
|
||||
|
||||
# 添加 repository
|
||||
echo "deb [signed-by=/usr/share/keyrings/neo4j.gpg] https://debian.neo4j.com stable latest" | $SUDO tee /etc/apt/sources.list.d/neo4j.list
|
||||
echo "deb [signed-by=/usr/share/keyrings/neo4j.gpg] https://debian.neo4j.com 5.0 latest" | $SUDO tee -a /etc/apt/sources.list.d/neo4j.list
|
||||
|
||||
$SUDO apt update
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 3. 安装 Neo4j
|
||||
# -------------------------------------------------------------------------
|
||||
echo "[3/6] 安装 Neo4j Community Edition..."
|
||||
|
||||
# 安装 neo4j (会同时安装依赖)
|
||||
$SUDO apt install -y neo4j
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 4. 配置 Neo4j
|
||||
# -------------------------------------------------------------------------
|
||||
echo "[4/6] 配置 Neo4j..."
|
||||
|
||||
# 允许远程访问
|
||||
$SUDO sed -i 's/#server.default_listen_address=0.0.0.0/server.default_listen_address=0.0.0.0/' /etc/neo4j/neo4j.conf
|
||||
|
||||
# 设置初始密码 (默认用户: neo4j)
|
||||
# 如果需要设置密码,取消下面注释并修改密码
|
||||
# echo "neo4j:你的密码" | $SUDO tee /etc/neo4j/neo4j-auth
|
||||
|
||||
# 关闭增强监控(开发环境)
|
||||
$SUDO sed -i 's/#dbms.security.procedures.unrestricted=.*/dbms.security.procedures.unrestricted=apoc.*/' /etc/neo4j/neo4j.conf
|
||||
|
||||
# 启用 APOC
|
||||
$SUDO sed -i 's/#dbms.security.procedures.unallowed=.*/dbms.security.procedures.unallowed=apoc.*/' /etc/neo4j/neo4j.conf
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 5. 启动 Neo4j
|
||||
# -------------------------------------------------------------------------
|
||||
echo "[5/6] 启动 Neo4j 服务..."
|
||||
|
||||
$SUDO systemctl enable neo4j
|
||||
$SUDO systemctl start neo4j
|
||||
|
||||
# 等待启动
|
||||
sleep 5
|
||||
|
||||
# 检查状态
|
||||
if $SUDO systemctl is-active --quiet neo4j; then
|
||||
echo " Neo4j 已启动"
|
||||
else
|
||||
echo " 警告: Neo4j 启动可能失败,请检查: sudo systemctl status neo4j"
|
||||
fi
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 6. 安装 Python 依赖
|
||||
# -------------------------------------------------------------------------
|
||||
echo "[6/6] 配置 Python 虚拟环境..."
|
||||
|
||||
# 创建项目目录和虚拟环境
|
||||
PROJECT_DIR="$HOME/openclaw"
|
||||
mkdir -p "$PROJECT_DIR"
|
||||
cd "$PROJECT_DIR"
|
||||
|
||||
# 创建虚拟环境(使用 virtualenv 以保证兼容性)
|
||||
if ! command -v virtualenv &> /dev/null; then
|
||||
$SUDO apt install -y python3-virtualenv
|
||||
fi
|
||||
python3 -m virtualenv venv
|
||||
source venv/bin/activate
|
||||
|
||||
# 安装依赖
|
||||
pip install --upgrade pip
|
||||
pip install neo4j openai
|
||||
|
||||
# 创建环境变量文件
|
||||
cat > .env << 'EOF'
|
||||
DEEPSEEK_API_KEY=your-api-key-here
|
||||
NEO4J_URI=bolt://localhost:7687
|
||||
NEO4J_USER=neo4j
|
||||
NEO4J_PASSWORD=neo4j
|
||||
EOF
|
||||
|
||||
echo " 虚拟环境已创建: $PROJECT_DIR/venv"
|
||||
echo " 激活: source $PROJECT_DIR/venv/bin/activate"
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 完成
|
||||
# -------------------------------------------------------------------------
|
||||
echo ""
|
||||
echo "========================================"
|
||||
echo "安装完成!"
|
||||
echo "========================================"
|
||||
echo ""
|
||||
echo "Neo4j 控制台: http://localhost:7474"
|
||||
echo "默认用户: neo4j"
|
||||
echo "初始密码: neo4j (首次登录需修改)"
|
||||
echo ""
|
||||
echo "启动对话:"
|
||||
echo " cd $PROJECT_DIR"
|
||||
echo " source venv/bin/activate"
|
||||
echo " python ~/openclaw_demo.py"
|
||||
echo ""
|
||||
echo "或直接运行 Demo:"
|
||||
echo " source $PROJECT_DIR/venv/bin/activate"
|
||||
echo " python /home/program/graph_enable_ability/openclaw_neo4j_demo.py"
|
||||
63
scripts/start_neo4j_docker.sh
Normal file
63
scripts/start_neo4j_docker.sh
Normal file
@ -0,0 +1,63 @@
|
||||
#!/bin/bash
|
||||
# Neo4j Docker 一键启动脚本
|
||||
|
||||
set -e
|
||||
|
||||
echo "========================================"
|
||||
echo "Neo4j Docker 启动脚本"
|
||||
echo "========================================"
|
||||
|
||||
# 检查 Docker
|
||||
if ! command -v docker &> /dev/null; then
|
||||
echo "Error: Docker 未安装"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# 检查并停止现有容器
|
||||
if docker ps -a | grep -q openclaw-neo4j; then
|
||||
echo "[Info] 停止现有容器..."
|
||||
docker stop openclaw-neo4j 2>/dev/null || true
|
||||
docker rm openclaw-neo4j 2>/dev/null || true
|
||||
fi
|
||||
|
||||
# 启动 Neo4j
|
||||
echo "[Info] 启动 Neo4j 容器..."
|
||||
docker run -d \
|
||||
--name openclaw-neo4j \
|
||||
-p 7474:7474 \
|
||||
-p 7687:7687 \
|
||||
-e NEO4J_AUTH=neo4j/neo4j \
|
||||
-e NEO4J_PLUGINS='["apoc"]' \
|
||||
neo4j:5
|
||||
|
||||
echo "[Info] 等待 Neo4j 启动..."
|
||||
sleep 15
|
||||
|
||||
# 配置 Python 虚拟环境
|
||||
echo "[Info] 配置 Python 虚拟环境..."
|
||||
PROJECT_DIR="$HOME/openclaw"
|
||||
mkdir -p "$PROJECT_DIR"
|
||||
cd "$PROJECT_DIR"
|
||||
python3 -m venv venv 2>/dev/null || python3 -m virtualenv venv
|
||||
source venv/bin/activate
|
||||
pip install --upgrade pip
|
||||
pip install neo4j openai
|
||||
|
||||
cat > .env << 'EOF'
|
||||
DEEPSEEK_API_KEY=your-api-key-here
|
||||
NEO4J_URI=bolt://localhost:7687
|
||||
NEO4J_USER=neo4j
|
||||
NEO4J_PASSWORD=neo4j
|
||||
EOF
|
||||
|
||||
echo ""
|
||||
echo "========================================"
|
||||
echo "启动完成!"
|
||||
echo "========================================"
|
||||
echo "HTTP: http://localhost:7474"
|
||||
echo "Bolt: bolt://localhost:7687"
|
||||
echo "用户: neo4j / neo4j"
|
||||
echo ""
|
||||
echo "启动对话:"
|
||||
echo " cd $PROJECT_DIR && source venv/bin/activate"
|
||||
echo " python /home/program/graph_enable_ability/openclaw_neo4j_demo.py"
|
||||
Reference in New Issue
Block a user