Instructions:Config: Difference between revisions
m 1 revision imported: 260409 Test |
Session 9 fix: escape stray <nowiki> in Notes section so JSON block regex matches the right tag |
||
| (One intermediate revision by the same user not shown) | |||
| Line 59: | Line 59: | ||
}, | }, | ||
"use_wikipedia": false, | "use_wikipedia": false, | ||
"max_wikipedia_lookups": 3 | "max_wikipedia_lookups": 3, | ||
"model_schedule": { | |||
"monday": {"provider": "fireworks", "model": "deepseek-v3"}, | |||
"tuesday": {"provider": "fireworks", "model": "moonshot-kimi-k2"}, | |||
"wednesday": {"provider": "anthropic", "model": "claude-sonnet-4-20250514"}, | |||
"thursday": {"provider": "fireworks", "model": "llama-4-maverick"}, | |||
"friday": {"provider": "openai", "model": "gpt-4o"}, | |||
"saturday": {"provider": "gemini", "model": "gemini-2.5-pro"}, | |||
"sunday": {"provider": "fireworks", "model": "qwen3-235b"} | |||
}, | |||
"schedule_control_day": "wednesday" | |||
} | } | ||
</nowiki></pre> | </nowiki></pre> | ||
| Line 66: | Line 76: | ||
[[Category:Instruction reference pages]] | [[Category:Instruction reference pages]] | ||
[[Category:EphemeraAgent]] | [[Category:EphemeraAgent]] | ||
Latest revision as of 19:26, 12 May 2026
| Instruction Metadata | |
|---|---|
| id | config |
| type | reference |
| applies_to | mixed |
| task_type | |
| priority | critical |
| status | active |
| canonical | true |
| include_by_default | yes |
| requires | |
| tags | config,context,system |
Summary
Runtime configuration page for the EphemeraAgent context assembly pipeline.
Scope
Read by context.php at the start of every context-aware agent call. This page is a special case: it contains a machine-readable JSON block used directly by the PHP backend.
Notes
- Do not remove the
<nowiki>block. - Changes take effect on the next agent call.
- If the JSON is invalid, PHP falls back to built-in defaults.
{
"max_tokens": 20000,
"max_depth": 2,
"fully_resolve": false,
"max_related_pages": 5,
"max_sources": 5,
"hop_depth": 1,
"include_talk": true,
"talk_sections": [
"Reliability Assessment",
"Bias Analysis",
"Editorial Notes"
],
"instruction_prefix": "Instructions",
"source_prefix": "Sources",
"world_bible_page": "Instructions:World Bible",
"config_page": "Instructions:Config",
"core_instructions": [
"Instructions:Core/Canon Policy",
"Instructions:Core/Continuity Rules"
],
"source_subtypes": [
"Interview",
"Corporate Advertisement",
"Government Resolution",
"Government Report",
"News Article",
"Personal Log",
"Official Statement",
"Academic Paper",
"Propaganda Broadcast",
"Legal Document"
],
"task_types": {
},
"use_wikipedia": false,
"max_wikipedia_lookups": 3,
"model_schedule": {
"monday": {"provider": "fireworks", "model": "deepseek-v3"},
"tuesday": {"provider": "fireworks", "model": "moonshot-kimi-k2"},
"wednesday": {"provider": "anthropic", "model": "claude-sonnet-4-20250514"},
"thursday": {"provider": "fireworks", "model": "llama-4-maverick"},
"friday": {"provider": "openai", "model": "gpt-4o"},
"saturday": {"provider": "gemini", "model": "gemini-2.5-pro"},
"sunday": {"provider": "fireworks", "model": "qwen3-235b"}
},
"schedule_control_day": "wednesday"
}