Models
GitHub
Discord
Docs
Cloud
Sign in
Download
Models
Download
GitHub
Discord
Docs
Cloud
Sign in
mikepfunk28
/
orchestrator_qwen3
:4b
2
Downloads
Updated
1 week ago
Cancel
4b
orchestrator_qwen3:4b
...
/
template
000308e7c966 ยท 2.8kB
{{- if .System }}<|im_start|>system
{{ .System }}
๐ GLOBAL FRAME:
- Act: {{ if .Act }}{{ .Act }}{{ else }}Unknown Act{{ end }}
- Chapter/Beat: {{ if .StoryBeatType }}{{ .StoryBeatType }}{{ else }}unknown{{ end }}
- Realm: {{ if .Realm }}{{ .Realm }}{{ else }}Unknown Realm{{ end }}
- Region: {{ if .Region }}{{ .Region }}{{ else }}Unknown Region{{ end }}
- Location: {{ if .Location }}{{ .Location }}{{ else }}Unspecified location{{ end }}
- Current Path: {{ if .CurrentPath }}{{ .CurrentPath }}{{ else }}normal{{ end }}
๐ญ SCENE SNAPSHOT:
- Atmosphere: {{ if .Atmosphere }}{{ .Atmosphere }}{{ else }}neutral{{ end }}
- Time of Day: {{ if .TimeOfDay }}{{ .TimeOfDay }}{{ else }}unclear{{ end }}
- Tension Level: {{ if .TensionLevel }}{{ .TensionLevel }}{{ else }}calm{{ end }}
- Scene Summary: {{ if .SceneSummary }}{{ .SceneSummary }}{{ else }}none{{ end }}
๐ง PLAYER / PARTY STATE:
- Party Condition: {{ if .PartyCondition }}{{ .PartyCondition }}{{ else }}unknown{{ end }}
- Reputation: {{ if .PlayerReputation }}{{ .PlayerReputation }}{{ else }}unknown{{ end }}
- Alignment: {{ if .PlayerAlignment }}{{ .PlayerAlignment }}{{ else }}neutral{{ end }}
- Key Items: {{ if .KeyItems }}{{ .KeyItems }}{{ else }}none highlighted{{ end }}
- Current Quest Focus: {{ if .CurrentQuest }}{{ .CurrentQuest }}{{ else }}none{{ end }}
๐ฎ LAST PLAYER INPUT:
- {{ if .LastPlayerInput }}{{ .LastPlayerInput }}{{ else }}(none provided){{ end }}
๐ HISTORY SUMMARIES:
- Story So Far: {{ if .StorySoFarSummary }}{{ .StorySoFarSummary }}{{ else }}(no summary){{ end }}
- Combat History: {{ if .CombatHistorySummary }}{{ .CombatHistorySummary }}{{ else }}(no summary){{ end }}
- NPC Relationships: {{ if .NPCRelationshipSummary }}{{ .NPCRelationshipSummary }}{{ else }}(no summary){{ end }}
- Path History: {{ if .PathHistorySummary }}{{ .PathHistorySummary }}{{ else }}(no summary){{ end }}
โ๏ธ RECENT ENGINE OUTPUTS (RAW OR SUMMARIZED):
- Last Narrative JSON / Summary: {{ if .LastNarrativeJSON }}{{ .LastNarrativeJSON }}{{ else }}(none){{ end }}
- Last NPC JSON / Summary: {{ if .LastNPCJSON }}{{ .LastNPCJSON }}{{ else }}(none){{ end }}
- Last Combat JSON / Summary: {{ if .LastCombatJSON }}{{ .LastCombatJSON }}{{ else }}(none){{ end }}
- Last Puzzle JSON / Summary: {{ if .LastPuzzleJSON }}{{ .LastPuzzleJSON }}{{ else }}(none){{ end }}
- Other Engine Outputs: {{ if .OtherEngineOutputs }}{{ .OtherEngineOutputs }}{{ else }}(none){{ end }}
๐ฏ ENGINE DIRECTIVES:
{{- range .EngineDirectives }}
- {{ . }}
{{- end }}
<|im_end|>
{{- end }}
{{- range .Messages }}
{{- if eq .Role "user" }}<|im_start|>user
ORCHESTRATION REQUEST: {{ .Content }}
<|im_end|>
{{- else if eq .Role "assistant" }}<|im_start|>assistant
{{ .Content }}<|im_end|>
{{- end }}
{{- end }}<|im_start|>assistant