Drop the three-layer Claude subprocess orchestration (local model →
Claude verifier → cloud escalation). Skills now call LiteLLM directly
and return plain text to Claude Code, which decides what to do with it.
- Delete executor, orchestrator, verifier, result, attempts packages
- Simplify LiteLLMExecutor: Run(Request)→Result becomes Complete(model,sys,user)→(string,int64,error)
- Replace ExecutorFn with CompleteFunc in all 6 skill configs
- Rewrite all skill handlers to call Complete and return {"text","model","duration_ms"}
- Simplify config/models: remove Verifier/LlamaSwapURL, add ModelFor
- Bump version to v0.5.0
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
package config_test
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/mathiasbq/supervisor/internal/config"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
const testYAML = `
|
|
default_chain:
|
|
- ollama/qwen3-coder-30b-tuned
|
|
- claude-sonnet-4-6
|
|
|
|
skills:
|
|
review:
|
|
chain:
|
|
- ollama/devstral-tuned
|
|
- ollama/gemma4
|
|
- claude-sonnet-4-6
|
|
spec:
|
|
chain:
|
|
- ollama/phi4
|
|
- claude-opus-4-6
|
|
`
|
|
|
|
func writeModels(t *testing.T, content string) string {
|
|
t.Helper()
|
|
f := filepath.Join(t.TempDir(), "models.yaml")
|
|
require.NoError(t, os.WriteFile(f, []byte(content), 0644))
|
|
return f
|
|
}
|
|
|
|
func TestModelsModelForSkillWithEntry(t *testing.T) {
|
|
m, err := config.LoadModels(writeModels(t, testYAML))
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "ollama/devstral-tuned", m.ModelFor("review", ""))
|
|
}
|
|
|
|
func TestModelsModelForDefaultFallback(t *testing.T) {
|
|
m, err := config.LoadModels(writeModels(t, testYAML))
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "ollama/qwen3-coder-30b-tuned", m.ModelFor("trainer", ""))
|
|
}
|
|
|
|
func TestModelsModelForCallerOverride(t *testing.T) {
|
|
m, err := config.LoadModels(writeModels(t, testYAML))
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "claude-opus-4-6", m.ModelFor("review", "claude-opus-4-6"))
|
|
}
|