@miller-tech/uap 1.13.6 → 1.13.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/config/chat_template.jinja +126 -44
- package/config/model-profiles/qwen35.json +3 -3
- package/dist/.tsbuildinfo +1 -1
- package/dist/benchmarks/token-throughput.d.ts +259 -0
- package/dist/benchmarks/token-throughput.d.ts.map +1 -0
- package/dist/benchmarks/token-throughput.js +198 -0
- package/dist/benchmarks/token-throughput.js.map +1 -0
- package/dist/bin/cli.js +12 -0
- package/dist/bin/cli.js.map +1 -1
- package/dist/cli/dashboard.d.ts.map +1 -1
- package/dist/cli/dashboard.js +10 -20
- package/dist/cli/dashboard.js.map +1 -1
- package/dist/cli/init.d.ts.map +1 -1
- package/dist/cli/init.js +5 -0
- package/dist/cli/init.js.map +1 -1
- package/dist/cli/memory.d.ts.map +1 -1
- package/dist/cli/memory.js +9 -18
- package/dist/cli/memory.js.map +1 -1
- package/dist/cli/worktree.d.ts +4 -1
- package/dist/cli/worktree.d.ts.map +1 -1
- package/dist/cli/worktree.js +73 -1
- package/dist/cli/worktree.js.map +1 -1
- package/dist/coordination/adaptive-patterns.d.ts +3 -1
- package/dist/coordination/adaptive-patterns.d.ts.map +1 -1
- package/dist/coordination/adaptive-patterns.js +31 -3
- package/dist/coordination/adaptive-patterns.js.map +1 -1
- package/dist/dashboard/data-service.d.ts +27 -0
- package/dist/dashboard/data-service.d.ts.map +1 -1
- package/dist/dashboard/data-service.js +210 -17
- package/dist/dashboard/data-service.js.map +1 -1
- package/dist/memory/embeddings.d.ts.map +1 -1
- package/dist/memory/embeddings.js +1 -1
- package/dist/memory/embeddings.js.map +1 -1
- package/dist/models/router.js +1 -1
- package/dist/models/router.js.map +1 -1
- package/dist/models/types.js +13 -13
- package/dist/models/types.js.map +1 -1
- package/dist/tasks/coordination.js +1 -1
- package/dist/tasks/coordination.js.map +1 -1
- package/package.json +1 -1
- package/templates/hooks/session-start.sh +91 -51
- package/tools/agents/install-opencode-local.sh.j2 +57 -7
- package/tools/agents/opencode_uap_agent.py +63 -1
- package/tools/agents/scripts/anthropic_proxy.py +759 -12
- package/tools/agents/scripts/tool_call_wrapper.py +9 -5
|
@@ -86,8 +86,8 @@ MODEL_PROFILES: Dict[str, Dict[str, Any]] = {
|
|
|
86
86
|
"temperature": 0.3,
|
|
87
87
|
"top_p": 0.9,
|
|
88
88
|
"presence_penalty": 0.0,
|
|
89
|
-
"max_tokens":
|
|
90
|
-
"enable_thinking":
|
|
89
|
+
"max_tokens": 16384,
|
|
90
|
+
"enable_thinking": True,
|
|
91
91
|
"model": "qwen35-a3b-iq4xs",
|
|
92
92
|
"base_url": "http://127.0.0.1:8080/v1",
|
|
93
93
|
"api_key": "not-needed",
|
|
@@ -99,13 +99,17 @@ MODEL_PROFILES: Dict[str, Dict[str, Any]] = {
|
|
|
99
99
|
"dynamic_temperature": True,
|
|
100
100
|
"dynamic_temp_decay": 0.5,
|
|
101
101
|
"dynamic_temp_floor": 0.2,
|
|
102
|
-
# Qwen-specific:
|
|
102
|
+
# Qwen-specific: thinking mode enabled for better reasoning and longer outputs
|
|
103
|
+
# suppress_thinking sends chat_template_kwargs to control template behavior
|
|
103
104
|
"suppress_thinking": True,
|
|
104
105
|
"batch_system_prompt": (
|
|
105
106
|
"CRITICAL: You MUST emit ALL tool calls in a SINGLE response. "
|
|
106
|
-
"Each tool call must
|
|
107
|
+
"Each tool call must use the <tool_call><function=name><parameter=key>value</parameter></function></tool_call> format. "
|
|
107
108
|
"Do NOT call one tool and wait - emit ALL tool calls together NOW. "
|
|
108
|
-
"You must produce all required tool calls in one response."
|
|
109
|
+
"You must produce all required tool calls in one response. "
|
|
110
|
+
"IMPORTANT: You MUST always produce visible output on every turn. "
|
|
111
|
+
"Never respond with only internal reasoning and no external content. "
|
|
112
|
+
"Always either use a tool or write a text response to the user."
|
|
109
113
|
),
|
|
110
114
|
},
|
|
111
115
|
"llama": {
|