-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode_cli.go
More file actions
187 lines (161 loc) · 5.13 KB
/
opencode_cli.go
File metadata and controls
187 lines (161 loc) · 5.13 KB
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
184
185
186
187
package iteragent
import (
"bufio"
"context"
"fmt"
"os"
"os/exec"
"strings"
"sync"
)
// OpenCodeCLIConfig configures the OpenCode CLI provider.
type OpenCodeCLIConfig struct {
Model string // e.g., "mimo-v2-pro-free"
}
type opencodeCLIProvider struct {
cfg OpenCodeCLIConfig
}
// NewOpenCodeCLI returns a provider that uses the OpenCode CLI internally.
// This enables access to OpenCode's free models without a public REST API.
func NewOpenCodeCLI(cfg OpenCodeCLIConfig) Provider {
return &opencodeCLIProvider{cfg: cfg}
}
func (p *opencodeCLIProvider) Name() string {
model := strings.TrimPrefix(p.cfg.Model, "opencode/")
return fmt.Sprintf("opencode-cli(%s)", model)
}
// CompleteStream implements Provider by spawning OpenCode CLI and parsing JSON output.
func (p *opencodeCLIProvider) CompleteStream(ctx context.Context, messages []Message, opt CompletionOptions, onToken func(string)) (string, error) {
// Build the prompt from messages
var prompt strings.Builder
for _, msg := range messages {
switch msg.Role {
case "system":
prompt.WriteString("System: ")
prompt.WriteString(msg.Content)
prompt.WriteString("\n\n")
case "user":
prompt.WriteString(msg.Content)
case "assistant":
// Include assistant messages for context
prompt.WriteString("\n\nPrevious response: ")
prompt.WriteString(msg.Content)
prompt.WriteString("\n\nContinue: ")
}
}
return p.runOpenCode(ctx, prompt.String(), onToken)
}
func (p *opencodeCLIProvider) Complete(ctx context.Context, messages []Message, opts ...CompletionOptions) (string, error) {
var opt CompletionOptions
if len(opts) > 0 {
opt = opts[0]
}
return p.CompleteStream(ctx, messages, opt, nil)
}
// runOpenCode spawns the OpenCode CLI and streams its output.
func (p *opencodeCLIProvider) runOpenCode(ctx context.Context, prompt string, onToken func(string)) (string, error) {
// Find opencode binary
opencodePath, err := exec.LookPath("opencode")
if err != nil {
return "", fmt.Errorf("opencode CLI not found in PATH: %w", err)
}
// Build command arguments
modelArg := p.cfg.Model
if !strings.HasPrefix(modelArg, "opencode/") {
modelArg = "opencode/" + modelArg
}
args := []string{
"run",
"--model", modelArg,
"--format", "json",
prompt,
}
cmd := exec.CommandContext(ctx, opencodePath, args...)
cmd.Env = os.Environ() // Pass through environment variables
// Get stdout pipe for streaming
stdout, err := cmd.StdoutPipe()
if err != nil {
return "", fmt.Errorf("create stdout pipe: %w", err)
}
// Capture stderr for debugging
var stderrBuf strings.Builder
cmd.Stderr = &stderrBuf
// Start the command
if err := cmd.Start(); err != nil {
return "", fmt.Errorf("start opencode: %w", err)
}
// Read plain text output from opencode run
var fullResponse strings.Builder
scanner := bufio.NewScanner(stdout)
scanner.Buffer(make([]byte, 1024*1024), 10*1024*1024)
skipHeader := true
for scanner.Scan() {
line := scanner.Text()
// Skip "> build · model" header line
if skipHeader && (len(line) == 0 || (len(line) > 0 && line[0] == '>')) {
continue
}
skipHeader = false
fullResponse.WriteString(line)
fullResponse.WriteString("\n")
if onToken != nil {
onToken(line + "\n")
}
}
if scanErr := scanner.Err(); scanErr != nil {
return "", fmt.Errorf("read opencode output: %w", scanErr)
}
// Wait for command to complete
if err := cmd.Wait(); err != nil {
stderr := stderrBuf.String()
if stderr != "" {
return "", fmt.Errorf("opencode exited with error: %w, stderr: %s", err, stderr)
}
return "", fmt.Errorf("opencode exited with error: %w", err)
}
result := fullResponse.String()
if result == "" {
return "", fmt.Errorf("empty response from opencode-cli")
}
return result, nil
}
// OpenCodeCLIServer wraps the OpenCode CLI in a long-running server mode
// for better performance (avoids CLI startup overhead on each call).
//
// TODO: This is currently a stub. The "opencode serve" mode is not yet available
// upstream. When it becomes available, this should:
// - Start the opencode process in serve/daemon mode with stdin/stdout pipes
// - Send JSON-RPC or line-delimited requests over stdin
// - Read responses from stdout using the scanner
// - Implement Complete/CompleteStream by sending requests to the running process
//
// For now, callers should use NewOpenCodeCLI (which spawns a fresh process per call)
// or use NewOpenAICompat with an appropriate base URL if a REST API is available.
type OpenCodeCLIServer struct {
model string
cmd *exec.Cmd
mu sync.Mutex
running bool
}
// NewOpenCodeCLIServer creates a persistent OpenCode server process.
// This is more efficient for multiple calls.
func NewOpenCodeCLIServer(model string) (*OpenCodeCLIServer, error) {
_, err := exec.LookPath("opencode")
if err != nil {
return nil, fmt.Errorf("opencode CLI not found: %w", err)
}
// Use opencode serve mode if available, otherwise fall back to per-call
return &OpenCodeCLIServer{
model: model,
}, nil
}
// Close stops the server process.
func (s *OpenCodeCLIServer) Close() error {
s.mu.Lock()
defer s.mu.Unlock()
if s.cmd != nil && s.running {
s.running = false
return s.cmd.Process.Kill()
}
return nil
}