Compare commits
1 Commits
burn/681-p
...
feat/20260
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dba2199ece |
22
config.yaml
22
config.yaml
@@ -21,11 +21,10 @@ terminal:
|
|||||||
daytona_image: nikolaik/python-nodejs:python3.11-nodejs20
|
daytona_image: nikolaik/python-nodejs:python3.11-nodejs20
|
||||||
container_cpu: 1
|
container_cpu: 1
|
||||||
container_embeddings:
|
container_embeddings:
|
||||||
provider: ollama
|
provider: ollama
|
||||||
model: nomic-embed-text
|
model: nomic-embed-text
|
||||||
base_url: http://localhost:11434/v1
|
base_url: http://localhost:11434/v1
|
||||||
|
memory: 5120
|
||||||
memory: 5120
|
|
||||||
container_disk: 51200
|
container_disk: 51200
|
||||||
container_persistent: true
|
container_persistent: true
|
||||||
docker_volumes: []
|
docker_volumes: []
|
||||||
@@ -175,15 +174,14 @@ command_allowlist: []
|
|||||||
quick_commands: {}
|
quick_commands: {}
|
||||||
personalities: {}
|
personalities: {}
|
||||||
mesh:
|
mesh:
|
||||||
enabled: true
|
enabled: true
|
||||||
blackboard_provider: local
|
blackboard_provider: local
|
||||||
nostr_discovery: true
|
nostr_discovery: true
|
||||||
consensus_mode: competitive
|
consensus_mode: competitive
|
||||||
|
|
||||||
security:
|
security:
|
||||||
sovereign_audit: true
|
sovereign_audit: true
|
||||||
no_phone_home: true
|
no_phone_home: true
|
||||||
|
|
||||||
redact_secrets: true
|
redact_secrets: true
|
||||||
tirith_enabled: true
|
tirith_enabled: true
|
||||||
tirith_path: tirith
|
tirith_path: tirith
|
||||||
|
|||||||
@@ -114,6 +114,9 @@
|
|||||||
"id": "muda-audit-weekly",
|
"id": "muda-audit-weekly",
|
||||||
"name": "Muda Audit",
|
"name": "Muda Audit",
|
||||||
"prompt": "Run the Muda Audit script at /root/wizards/ezra/workspace/timmy-config/fleet/muda-audit.sh. The script measures the 7 wastes across the fleet and posts a report to Telegram. Report whether it succeeded or failed.",
|
"prompt": "Run the Muda Audit script at /root/wizards/ezra/workspace/timmy-config/fleet/muda-audit.sh. The script measures the 7 wastes across the fleet and posts a report to Telegram. Report whether it succeeded or failed.",
|
||||||
|
"model": "hermes3:latest",
|
||||||
|
"provider": "ollama",
|
||||||
|
"base_url": "http://localhost:11434/v1",
|
||||||
"schedule": {
|
"schedule": {
|
||||||
"kind": "cron",
|
"kind": "cron",
|
||||||
"expr": "0 21 * * 0",
|
"expr": "0 21 * * 0",
|
||||||
@@ -173,6 +176,9 @@
|
|||||||
"id": "overnight-rd-nightly",
|
"id": "overnight-rd-nightly",
|
||||||
"name": "Overnight R&D Loop",
|
"name": "Overnight R&D Loop",
|
||||||
"prompt": "Run the overnight R&D automation: Deep Dive paper synthesis, tightening loop for tool-use training data, DPO export sweep, morning briefing prep. All local inference via Ollama.",
|
"prompt": "Run the overnight R&D automation: Deep Dive paper synthesis, tightening loop for tool-use training data, DPO export sweep, morning briefing prep. All local inference via Ollama.",
|
||||||
|
"model": "hermes3:latest",
|
||||||
|
"provider": "ollama",
|
||||||
|
"base_url": "http://localhost:11434/v1",
|
||||||
"schedule": {
|
"schedule": {
|
||||||
"kind": "cron",
|
"kind": "cron",
|
||||||
"expr": "0 2 * * *",
|
"expr": "0 2 * * *",
|
||||||
|
|||||||
@@ -5,6 +5,11 @@ from pathlib import Path
|
|||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
|
|
||||||
|
def test_config_yaml_parses() -> None:
|
||||||
|
config = yaml.safe_load(Path("config.yaml").read_text())
|
||||||
|
assert isinstance(config, dict)
|
||||||
|
|
||||||
|
|
||||||
def test_config_defaults_to_local_llama_cpp_runtime() -> None:
|
def test_config_defaults_to_local_llama_cpp_runtime() -> None:
|
||||||
config = yaml.safe_load(Path("config.yaml").read_text())
|
config = yaml.safe_load(Path("config.yaml").read_text())
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user