Spaces:
Runtime error
Runtime error
Update knowledge/state.json
Browse files- knowledge/state.json +38 -0
knowledge/state.json
CHANGED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"knowledge_base": {
|
3 |
+
"name": "AutonomousAI_KnowledgeBase",
|
4 |
+
"description": "A structured knowledge base used by the autonomous AI system for decision making, context retrieval, and case resolution.",
|
5 |
+
"created_at": "2025-06-26T12:00:00Z",
|
6 |
+
"last_updated": "2025-06-26T12:00:00Z",
|
7 |
+
"total_documents": 0,
|
8 |
+
"total_tokens": 0,
|
9 |
+
"embedding_model": "sentence-transformers/all-MiniLM-L6-v2",
|
10 |
+
"vector_store": {
|
11 |
+
"type": "FAISS",
|
12 |
+
"index_file": "vector_index/faiss.index",
|
13 |
+
"dimension": 384,
|
14 |
+
"metric": "cosine"
|
15 |
+
},
|
16 |
+
"categories": [],
|
17 |
+
"tags": [],
|
18 |
+
"synced_sources": [],
|
19 |
+
"active_contexts": [],
|
20 |
+
"memory_enabled": true,
|
21 |
+
"status": "initialized"
|
22 |
+
},
|
23 |
+
"system_flags": {
|
24 |
+
"auto_update": true,
|
25 |
+
"logging_enabled": true,
|
26 |
+
"update_interval_minutes": 30
|
27 |
+
},
|
28 |
+
"integrations": {
|
29 |
+
"source_sync": {
|
30 |
+
"enabled": false,
|
31 |
+
"sources": []
|
32 |
+
},
|
33 |
+
"feedback_loop": {
|
34 |
+
"enabled": true,
|
35 |
+
"type": "user_and_self_review"
|
36 |
+
}
|
37 |
+
}
|
38 |
+
}
|