FerrellSyntheticIntelligence commited on
Commit
b371fe5
·
verified ·
1 Parent(s): dba28fc

Upload jedi/utils/config.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. jedi/utils/config.py +37 -0
jedi/utils/config.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ JEDI Configuration — System-wide configuration management.
3
+ """
4
+
5
+ DEFAULT_CONFIG = {
6
+ "system": {
7
+ "name": "JEDI",
8
+ "version": "0.1.0",
9
+ "codename": "First Strike",
10
+ },
11
+ "engine": {
12
+ "max_nanobots": 1000,
13
+ "max_concurrent_missions": 10,
14
+ "heartbeat_interval": 30,
15
+ "self_destruct_timeout": 3600,
16
+ },
17
+ "legal": {
18
+ "require_written_auth": True,
19
+ "require_operator_id": True,
20
+ "require_jurisdiction": True,
21
+ "roe_enforcement": True,
22
+ },
23
+ "swarm": {
24
+ "consensus_threshold": 0.7,
25
+ "min_quorum": 3,
26
+ "task_redundancy": 2,
27
+ },
28
+ "comms": {
29
+ "encryption": "post_quantum",
30
+ "covert_channels": True,
31
+ "heartbeat_protocol": "encrypted_c2",
32
+ },
33
+ "memory": {
34
+ "store_path": "/tmp/jedi_memory",
35
+ "persistence_enabled": True,
36
+ },
37
+ }