Commit History

Create context_graph.py
f5c5de9
verified

Tpayne101 commited on

Create memory_core.py
f3fb685
verified

Tpayne101 commited on

Create identity_core.py
5c37d63
verified

Tpayne101 commited on

Create agentos_core.p
d94908e
verified

Tpayne101 commited on

Create app.py
5306743
verified

Tpayne101 commited on

Update README.md
62bfe88
verified

Tpayne101 commited on

Update .gitattributes
7790eae
verified

Tpayne101 commited on

Delete telemetry.py
79ed532
verified

Tpayne101 commited on

Delete requirements.txt
3bab8e7
verified

Tpayne101 commited on

Delete orchestrator.py
06aa74e
verified

Tpayne101 commited on

Delete memory_core.py
e59785f
verified

Tpayne101 commited on

Delete memory.py
e0bfab8
verified

Tpayne101 commited on

Delete import json, os class ContextMemoryGraph: def __init__(self, file_path="context_graph.json"): self.file_path = file_path self._init_graph() def _init_graph(self): if not os.path.exists(self.file_path): with open(self.file_path, "w") as f: json.dump({"context_links": {}}, f) def link_context(self, agent_id, key, value): with open(self.file_path, "r") as f: graph = json.load(f) if agent_id not in graph["context_links"]: graph["context_links"][agent_id] = {} graph["context_links"][agent_id][key] = value with open(self.file_path, "w") as f: json.dump(graph, f, indent=2) def get_context(self, agent_id): with open(self.file_path, "r") as f: graph = json.load(f) return graph["context_links"].get(agent_id, {})
67cd8be
verified

Tpayne101 commited on

Delete identity_core.py
951fdc5
verified

Tpayne101 commited on

Delete context_memory.py
68defec
verified

Tpayne101 commited on

Delete context_graph.py
dd636ef
verified

Tpayne101 commited on

Delete app.py
88bf19a
verified

Tpayne101 commited on

Delete agentos_core.py
946176a
verified

Tpayne101 commited on

Update requirements.txt
e8b2c56
verified

Tpayne101 commited on

Update context_graph.py
0cf9212
verified

Tpayne101 commited on

Update requirements.txt
8bcbb2b
verified

Tpayne101 commited on

Update requirements.txt
68a9f2b
verified

Tpayne101 commited on

Update app.py
b705c96
verified

Tpayne101 commited on

Create orchestrator.py
defd555
verified

Tpayne101 commited on

Create context_memory.py
540c668
verified

Tpayne101 commited on

Create import json, os class ContextMemoryGraph: def __init__(self, file_path="context_graph.json"): self.file_path = file_path self._init_graph() def _init_graph(self): if not os.path.exists(self.file_path): with open(self.file_path, "w") as f: json.dump({"context_links": {}}, f) def link_context(self, agent_id, key, value): with open(self.file_path, "r") as f: graph = json.load(f) if agent_id not in graph["context_links"]: graph["context_links"][agent_id] = {} graph["context_links"][agent_id][key] = value with open(self.file_path, "w") as f: json.dump(graph, f, indent=2) def get_context(self, agent_id): with open(self.file_path, "r") as f: graph = json.load(f) return graph["context_links"].get(agent_id, {})
f062f85
verified

Tpayne101 commited on

Update app.py
8f143f0
verified

Tpayne101 commited on

Update agentos_core.py
c486d43
verified

Tpayne101 commited on

Update agentos_core.py
2d78b6e
verified

Tpayne101 commited on

Create context_graph.py
0b63a4a
verified

Tpayne101 commited on

Create identity_core.py
0482082
verified

Tpayne101 commited on

Update app.py
da34586
verified

Tpayne101 commited on

Update app.py
39a7b5e
verified

Tpayne101 commited on

Update app.py
dca87df
verified

Tpayne101 commited on

Update app.py
7a0eefa
verified

Tpayne101 commited on

Update agentos_core.py
fc8f673
verified

Tpayne101 commited on

Rename agent_os.py to agentos_core.py
65da51d
verified

Tpayne101 commited on

Rename agentos_core.py to agent_os.py
12ca8be
verified

Tpayne101 commited on

Update agentos_core.py
e3c9980
verified

Tpayne101 commited on

Create memory_core.py
d67d436
verified

Tpayne101 commited on

Create telemetry.py
c8f68bb
verified

Tpayne101 commited on

Update agentos_core.py
2ca143e
verified

Tpayne101 commited on

Update agentos_core.py
3271dbe
verified

Tpayne101 commited on

Update agentos_core.py
de6f849
verified

Tpayne101 commited on

Update agentos_core.py
199be13
verified

Tpayne101 commited on

Update agentos_core.py
f5800c0
verified

Tpayne101 commited on

Update agentos_core.py
0b268bb
verified

Tpayne101 commited on

Update agentos_core.py
cf8be33
verified

Tpayne101 commited on

Update agentos_core.py
090bb83
verified

Tpayne101 commited on

Update agentos_core.py
94d0d4b
verified

Tpayne101 commited on