-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPROJECT_CONCEPTS.json
More file actions
158 lines (158 loc) · 5.38 KB
/
Copy pathPROJECT_CONCEPTS.json
File metadata and controls
158 lines (158 loc) · 5.38 KB
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
{
"version": "0.1.0",
"project": "SpecuLoop",
"description": "Persistent semantic memory for AI agents — semantic knowledge graph with dynamic RAG, semantic zoom, and interlocked translation",
"concepts": [
{
"name": "wrap",
"full_name": "Persistent Semantic State (WRAP)",
"aliases": [
"persistent semantic memory",
"semantic knowledge graph",
"structured agent memory",
"graph-based reasoning",
"knowledge representation"
],
"problems": ["context_overload", "shallow_retrieval", "agent_memory"],
"related_fields": ["knowledge_graphs", "semantic_memory", "agent_memory"],
"status": "implemented",
"confidence": "high",
"documentation": ["WRAP_CORE_SPEC.md", "docs/architecture/wrap.md"]
},
{
"name": "drag",
"full_name": "Dynamic RAG (DRAG)",
"aliases": [
"adaptive retrieval",
"dynamic knowledge graph RAG",
"graph-based retrieval",
"query-dependent subgraph selection"
],
"problems": ["shallow_retrieval", "context_overload", "token_waste"],
"related_fields": ["rag", "graphrag", "adaptive_retrieval"],
"status": "implemented",
"confidence": "medium",
"documentation": ["DRAG_CORE.md", "docs/architecture/drag.md"]
},
{
"name": "semantic_zoom",
"full_name": "Semantic Zoom",
"aliases": [
"multiscale semantic retrieval",
"semantic graph compression",
"hierarchical semantic zoom",
"graph coarsening",
"context-efficient reasoning"
],
"problems": ["context_overload", "token_waste", "knowledge_complexity"],
"related_fields": ["graph_coarsening", "hierarchical_retrieval", "multiscale_graphs"],
"status": "mechanism_exists",
"confidence": "medium",
"documentation": ["docs/concepts/semantic-zoom.md"]
},
{
"name": "semantic_lens",
"full_name": "Semantic Lens",
"aliases": [
"multi-view knowledge graph",
"context-dependent retrieval",
"adaptive retrieval",
"view-dependent graph projection"
],
"problems": ["one_size_fits_all_retrieval", "multiple_perspectives"],
"related_fields": ["multi_view_graphs", "adaptive_retrieval"],
"status": "implemented",
"confidence": "medium",
"documentation": ["docs/concepts/semantic-lenses.md"]
},
{
"name": "semantic_force",
"full_name": "Semantic Force",
"aliases": [
"edge weight",
"attraction-repulsion model",
"signed graph",
"weighted semantic relation"
],
"problems": ["semantic_relationships", "graph_ambiguity"],
"related_fields": ["signed_graphs", "force_directed_layout"],
"status": "implemented",
"confidence": "medium",
"documentation": ["docs/concepts/semantic-forces.md"]
},
{
"name": "interlocked_translation",
"full_name": "Interlocked Translation",
"aliases": [
"bidirectional programming",
"natural language code synchronization",
"specification-code alignment",
"bidirectional transformation"
],
"problems": ["code_language_disconnect", "provenance"],
"related_fields": ["bidirectional_programming", "program_synthesis"],
"status": "partial",
"confidence": "medium",
"documentation": ["INTERLOCKED_TRANSLATION.md", "docs/concepts/interlocked-translation.md"]
},
{
"name": "semantic_feedback",
"full_name": "Semantic Feedback",
"aliases": [
"interactive graph learning",
"human-in-the-loop knowledge graph",
"persistent correction",
"semantic belief update"
],
"problems": ["agent_misunderstanding", "human_correction"],
"related_fields": ["interactive_learning", "active_learning", "rlhf"],
"status": "partial",
"confidence": "medium",
"documentation": ["docs/concepts/semantic-feedback.md"]
},
{
"name": "persistent_semantic_memory",
"full_name": "Persistent Semantic Memory",
"aliases": [
"lifelong agent memory",
"AI agent persistent memory",
"long-term LLM memory",
"persistent knowledge graph"
],
"problems": ["agent_memory", "context_overload"],
"related_fields": ["agent_memory", "long_term_memory"],
"status": "implemented",
"confidence": "high",
"documentation": ["docs/concepts/persistent-semantic-memory.md"]
},
{
"name": "dynamic_rag",
"full_name": "Dynamic RAG",
"aliases": [
"adaptive retrieval",
"incremental graph learning",
"lifelong retrieval",
"knowledge graph updating"
],
"problems": ["shallow_retrieval", "context_overload"],
"related_fields": ["adaptive_rag", "incremental_learning"],
"status": "partial",
"confidence": "medium",
"documentation": ["docs/concepts/dynamic-rag.md"]
},
{
"name": "graph_coarsening",
"full_name": "Graph Coarsening",
"aliases": [
"graph summarization",
"hierarchical aggregation",
"multiscale reduction"
],
"problems": ["context_overload", "knowledge_complexity"],
"related_fields": ["graph_coarsening", "hierarchical_clustering"],
"status": "mechanism_exists",
"confidence": "low",
"documentation": ["docs/concepts/graph-coarsening.md"]
}
]
}