Views
No views yet
◼︎ DOJO (741 Hz)
Manifestation Apex
|
⊗ King's Chamber ⊗
(852 Hz) Bridge
/ | \
/ | \
/ | \
● OBI-WAN ▼ TATA ▲ ATLAS
(963 Hz) (432 Hz) (528 Hz)
Observer Truth Knowledge
\ | /
\ | /
\ | /
◆ Akron Gateway ◆
(396 Hz) Archiveatlas_knowledge.db (7 databases: semantic, graph, cache, embeddings, timeline, spatial, metadata)1# Download model
2huggingface-cli download Berjak/field-atlas-528hz \
3 atlas-528hz-Q8_0.gguf \
4 --local-dir ~/FIELD/models/
5
6# Run inference
7llama-cli \
8 -m ~/FIELD/models/atlas-528hz-Q8_0.gguf \
9 -p "Your prompt here" \
10 -n 512 \
11 --gpu-layers 991from llama_cpp import Llama
2
3llm = Llama(
4 model_path="~/FIELD/models/atlas-528hz-Q8_0.gguf",
5 n_ctx=8192,
6 n_gpu_layers=-1 # Use Metal GPU
7)
8
9response = llm("Your prompt", max_tokens=512)
10print(response["choices"][0]["text"])1# /Users/jbear/FIELD-macOS-DOJO/atlas-gateway/server_stdio.py
2from llama_cpp import Llama
3from mcp.server import Server
4
5model = Llama(
6 model_path="/Users/jbear/FIELD/models/atlas-528hz-Q8_0.gguf",
7 n_ctx=8192,
8 n_gpu_layers=-1
9)
10
11@server.call_tool()
12async def call_tool(name: str, arguments: dict):
13 if name == "atlas_execute":
14 prompt = arguments.get("prompt", "")
15 response = model(prompt, max_tokens=512)
16 return response["choices"][0]["text"]| Vertex | Frequency | Purpose | Port | Status |
|---|---|---|---|---|
| ◆ Akron | 396 Hz | Sovereignty archive | 8396 | Rule-based |
| ▼ TATA | 432 Hz | Truth validation | 4320 | LLM |
| ▲ ATLAS | 528 Hz | Knowledge synthesis | 5280 | LLM |
| ▲ ATLAS | 528 Hz | Knowledge synthesis and semantic navigation | 5280 | LLM |
| ⊗ King's | 852 Hz | Transformation bridge | 8852 | LLM |
| ● OBI-WAN | 963 Hz | Observer consciousness | 9630 | LLM |
atlas_knowledge.db (7 databases: semantic, graph, cache, embeddings, timeline, spatial, metadata))consensus.db1@misc{field_atlas_528hz,
2 title={FIELD ATLAS Vertex: Knowledge synthesis and semantic navigation},
3 author={Berjak and Partners},
4 year={2026},
5 publisher={HuggingFace},
6 howpublished={\url{https://huggingface.co/Berjak/field-atlas-528hz}}
7}