wotann 0.5.80 → 0.5.81

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.
@@ -29,6 +29,14 @@ const MODEL_PAIRS = [
29
29
  editor: { provider: "anthropic", model: PROVIDER_DEFAULTS["anthropic"].workerModel },
30
30
  label: "Claude Opus→Sonnet (highest quality)",
31
31
  },
32
+ {
33
+ // OpenAI-only fallback (2026-05-23): GPT oracle → GPT worker. Covers
34
+ // users who only have an OpenAI API key — without this pair they fall
35
+ // through to copilot→ollama which requires both subscription + local.
36
+ architect: { provider: "openai", model: PROVIDER_DEFAULTS["openai"].oracleModel },
37
+ editor: { provider: "openai", model: PROVIDER_DEFAULTS["openai"].workerModel },
38
+ label: "GPT oracle→GPT worker (OpenAI-only)",
39
+ },
32
40
  {
33
41
  // Cross-vendor hybrid: Anthropic worker as planner, Gemini Flash as
34
42
  // editor. Cost-optimised — Gemini Flash is currently the cheapest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wotann",
3
- "version": "0.5.80",
3
+ "version": "0.5.81",
4
4
  "description": "WOTANN — The All-Father of AI Agent Harnesses",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",