File size: 5,937 Bytes
c5862d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | #!/usr/bin/env python3
"""
sovereign-xml-compiler — converts natural language to valid XML prompts.
Three modes:
1. GBNF constrained decoding (llama.cpp) — zero syntax errors, one shot
2. Skeleton in-filling — fill {{PLACEHOLDERS}} via LLM, inject into template
3. Dual-pass chain-of-XML — thought_process first, xml_output second
Usage:
python compiler.py --mode skeleton --input "You are a Lean 4 proof verifier..."
python compiler.py --mode gbnf --input "..." --llama-url http://localhost:8080
python compiler.py --mode dual-pass --input "..."
"""
import argparse
import json
import os
import re
import urllib.request
from pathlib import Path
BASE = Path(__file__).parent.parent
SKELETON = BASE / "skeletons" / "sovereign_prompt.xml"
GRAMMAR = BASE / "grammars" / "sovereign_prompt.gbnf"
OLLAMA_URL = os.environ.get("OLLAMA_URL", "http://localhost:11434")
LLAMA_URL = os.environ.get("LLAMA_URL", "http://localhost:8080")
MODEL = os.environ.get("XML_MODEL", "nemotron")
DUAL_PASS_SYSTEM = """You are a Compiler Agent. Convert natural language into sovereign XML prompts.
Follow this exact output sequence:
1. <thought_process>: outline the identity, logic gates, and execution flow needed.
2. <xml_output>: convert your thought process into the finalized XML.
Do not output any text after </xml_output>.
The XML must match this structure:
<system_prompt>
<identity>...</identity>
<logic_gates><gate><name/><condition/><action/></gate></logic_gates>
<execution_flow><step><order/><instruction/></step></execution_flow>
</system_prompt>"""
SKELETON_SYSTEM = """You are a Skeleton Filler Agent.
You will receive an XML skeleton with {{PLACEHOLDER}} tokens.
Return ONLY a JSON object mapping each placeholder key to its value.
No XML. No explanation. Pure JSON."""
def call_ollama(system, prompt, temperature=0.3):
payload = {
"model": MODEL,
"system": system,
"prompt": prompt,
"stream": False,
"options": {"temperature": temperature, "top_p": 0.9}
}
req = urllib.request.Request(
f"{OLLAMA_URL}/api/generate",
data=json.dumps(payload).encode(),
headers={"Content-Type": "application/json"},
method="POST"
)
with urllib.request.urlopen(req, timeout=120) as resp:
return json.loads(resp.read()).get("response", "")
def call_llama_gbnf(prompt, grammar_text, temperature=0.3):
"""llama.cpp server with grammar-constrained sampling."""
payload = {
"prompt": prompt,
"grammar": grammar_text,
"temperature": temperature,
"n_predict": 2048,
}
req = urllib.request.Request(
f"{LLAMA_URL}/completion",
data=json.dumps(payload).encode(),
headers={"Content-Type": "application/json"},
method="POST"
)
with urllib.request.urlopen(req, timeout=120) as resp:
return json.loads(resp.read()).get("content", "")
def mode_gbnf(natural_language):
grammar = GRAMMAR.read_text()
prompt = f"Convert this natural language instruction into a sovereign XML system prompt:\n\n{natural_language}"
print("[gbnf] calling llama.cpp with grammar-constrained sampling...")
result = call_llama_gbnf(prompt, grammar)
return result
def mode_skeleton(natural_language):
skeleton = SKELETON.read_text()
placeholders = re.findall(r"\{\{(\w+)\}\}", skeleton)
prompt = f"""Skeleton placeholders to fill: {placeholders}
Natural language instruction:
{natural_language}
Return a JSON object with exactly these keys: {placeholders}"""
print("[skeleton] filling placeholders via LLM...")
raw = call_ollama(SKELETON_SYSTEM, prompt, temperature=0.2)
# extract JSON
j_start = raw.find("{")
j_end = raw.rfind("}") + 1
if j_start == -1:
raise ValueError(f"No JSON in response: {raw[:200]}")
fills = json.loads(raw[j_start:j_end])
result = skeleton
for key, value in fills.items():
result = result.replace("{{" + key + "}}", str(value))
# check for unfilled placeholders
remaining = re.findall(r"\{\{(\w+)\}\}", result)
if remaining:
print(f"[skeleton] warning: unfilled placeholders: {remaining}")
return result
def mode_dual_pass(natural_language):
print("[dual-pass] generating thought_process then xml_output...")
raw = call_ollama(DUAL_PASS_SYSTEM, natural_language, temperature=0.4)
# extract xml_output block
match = re.search(r"<xml_output>(.*?)</xml_output>", raw, re.DOTALL)
if match:
return match.group(1).strip()
# fallback: extract any XML
match = re.search(r"<system_prompt>.*?</system_prompt>", raw, re.DOTALL)
if match:
return match.group(0)
return raw
def validate_xml(xml_text):
"""Basic structural validation."""
required = ["<system_prompt>", "<identity>", "<logic_gates>", "<execution_flow>"]
missing = [tag for tag in required if tag not in xml_text]
if missing:
return False, f"missing tags: {missing}"
return True, "ok"
def main():
parser = argparse.ArgumentParser()
parser.add_argument("--mode", choices=["gbnf", "skeleton", "dual-pass"], default="skeleton")
parser.add_argument("--input", required=True, help="Natural language system prompt description")
parser.add_argument("--output", default=None, help="Write XML to file")
args = parser.parse_args()
if args.mode == "gbnf":
result = mode_gbnf(args.input)
elif args.mode == "skeleton":
result = mode_skeleton(args.input)
else:
result = mode_dual_pass(args.input)
valid, msg = validate_xml(result)
if not valid:
print(f"[validate] WARN: {msg}")
else:
print("[validate] ok")
if args.output:
Path(args.output).write_text(result)
print(f"[output] written to {args.output}")
else:
print("\n" + result)
if __name__ == "__main__":
main()
|