summaryrefslogtreecommitdiffhomepage
path: root/internal/llm/tools
diff options
context:
space:
mode:
Diffstat (limited to 'internal/llm/tools')
-rw-r--r--internal/llm/tools/bash.go16
-rw-r--r--internal/llm/tools/diagnostics.go4
-rw-r--r--internal/llm/tools/edit.go10
-rw-r--r--internal/llm/tools/edit_test.go2
-rw-r--r--internal/llm/tools/fetch.go6
-rw-r--r--internal/llm/tools/glob.go2
-rw-r--r--internal/llm/tools/grep.go2
-rw-r--r--internal/llm/tools/ls.go2
-rw-r--r--internal/llm/tools/mocks_test.go6
-rw-r--r--internal/llm/tools/shell/shell.go8
-rw-r--r--internal/llm/tools/sourcegraph.go2
-rw-r--r--internal/llm/tools/view.go4
-rw-r--r--internal/llm/tools/write.go10
-rw-r--r--internal/llm/tools/write_test.go2
14 files changed, 38 insertions, 38 deletions
diff --git a/internal/llm/tools/bash.go b/internal/llm/tools/bash.go
index c7c970e5a..18533b761 100644
--- a/internal/llm/tools/bash.go
+++ b/internal/llm/tools/bash.go
@@ -7,9 +7,9 @@ import (
"strings"
"time"
- "github.com/kujtimiihoxha/termai/internal/config"
- "github.com/kujtimiihoxha/termai/internal/llm/tools/shell"
- "github.com/kujtimiihoxha/termai/internal/permission"
+ "github.com/kujtimiihoxha/opencode/internal/config"
+ "github.com/kujtimiihoxha/opencode/internal/llm/tools/shell"
+ "github.com/kujtimiihoxha/opencode/internal/permission"
)
type BashParams struct {
@@ -122,16 +122,16 @@ When the user asks you to create a new git commit, follow these steps carefully:
</commit_analysis>
4. Create the commit with a message ending with:
-🤖 Generated with termai
-Co-Authored-By: termai <[email protected]>
+🤖 Generated with opencode
+Co-Authored-By: opencode <[email protected]>
- In order to ensure good formatting, ALWAYS pass the commit message via a HEREDOC, a la this example:
<example>
git commit -m "$(cat <<'EOF'
Commit message here.
- 🤖 Generated with termai
- Co-Authored-By: termai <[email protected]>
+ 🤖 Generated with opencode
+ Co-Authored-By: opencode <[email protected]>
EOF
)"
</example>
@@ -193,7 +193,7 @@ gh pr create --title "the pr title" --body "$(cat <<'EOF'
## Test plan
[Checklist of TODOs for testing the pull request...]
-🤖 Generated with termai
+🤖 Generated with opencode
EOF
)"
</example>
diff --git a/internal/llm/tools/diagnostics.go b/internal/llm/tools/diagnostics.go
index b7b2bb8ba..82989c774 100644
--- a/internal/llm/tools/diagnostics.go
+++ b/internal/llm/tools/diagnostics.go
@@ -9,8 +9,8 @@ import (
"strings"
"time"
- "github.com/kujtimiihoxha/termai/internal/lsp"
- "github.com/kujtimiihoxha/termai/internal/lsp/protocol"
+ "github.com/kujtimiihoxha/opencode/internal/lsp"
+ "github.com/kujtimiihoxha/opencode/internal/lsp/protocol"
)
type DiagnosticsParams struct {
diff --git a/internal/llm/tools/edit.go b/internal/llm/tools/edit.go
index 148e7aba7..6a1616010 100644
--- a/internal/llm/tools/edit.go
+++ b/internal/llm/tools/edit.go
@@ -9,11 +9,11 @@ import (
"strings"
"time"
- "github.com/kujtimiihoxha/termai/internal/config"
- "github.com/kujtimiihoxha/termai/internal/diff"
- "github.com/kujtimiihoxha/termai/internal/history"
- "github.com/kujtimiihoxha/termai/internal/lsp"
- "github.com/kujtimiihoxha/termai/internal/permission"
+ "github.com/kujtimiihoxha/opencode/internal/config"
+ "github.com/kujtimiihoxha/opencode/internal/diff"
+ "github.com/kujtimiihoxha/opencode/internal/history"
+ "github.com/kujtimiihoxha/opencode/internal/lsp"
+ "github.com/kujtimiihoxha/opencode/internal/permission"
)
type EditParams struct {
diff --git a/internal/llm/tools/edit_test.go b/internal/llm/tools/edit_test.go
index 0971775dd..1b58a0d7d 100644
--- a/internal/llm/tools/edit_test.go
+++ b/internal/llm/tools/edit_test.go
@@ -8,7 +8,7 @@ import (
"testing"
"time"
- "github.com/kujtimiihoxha/termai/internal/lsp"
+ "github.com/kujtimiihoxha/opencode/internal/lsp"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/internal/llm/tools/fetch.go b/internal/llm/tools/fetch.go
index 91bcb36a0..827755863 100644
--- a/internal/llm/tools/fetch.go
+++ b/internal/llm/tools/fetch.go
@@ -11,8 +11,8 @@ import (
md "github.com/JohannesKaufmann/html-to-markdown"
"github.com/PuerkitoBio/goquery"
- "github.com/kujtimiihoxha/termai/internal/config"
- "github.com/kujtimiihoxha/termai/internal/permission"
+ "github.com/kujtimiihoxha/opencode/internal/config"
+ "github.com/kujtimiihoxha/opencode/internal/permission"
)
type FetchParams struct {
@@ -146,7 +146,7 @@ func (t *fetchTool) Run(ctx context.Context, call ToolCall) (ToolResponse, error
return ToolResponse{}, fmt.Errorf("failed to create request: %w", err)
}
- req.Header.Set("User-Agent", "termai/1.0")
+ req.Header.Set("User-Agent", "opencode/1.0")
resp, err := client.Do(req)
if err != nil {
diff --git a/internal/llm/tools/glob.go b/internal/llm/tools/glob.go
index 7b4fb1187..40262ce2b 100644
--- a/internal/llm/tools/glob.go
+++ b/internal/llm/tools/glob.go
@@ -12,7 +12,7 @@ import (
"time"
"github.com/bmatcuk/doublestar/v4"
- "github.com/kujtimiihoxha/termai/internal/config"
+ "github.com/kujtimiihoxha/opencode/internal/config"
)
const (
diff --git a/internal/llm/tools/grep.go b/internal/llm/tools/grep.go
index 19333f50b..3436dd7eb 100644
--- a/internal/llm/tools/grep.go
+++ b/internal/llm/tools/grep.go
@@ -13,7 +13,7 @@ import (
"strings"
"time"
- "github.com/kujtimiihoxha/termai/internal/config"
+ "github.com/kujtimiihoxha/opencode/internal/config"
)
type GrepParams struct {
diff --git a/internal/llm/tools/ls.go b/internal/llm/tools/ls.go
index a63bf0eeb..05f300c0e 100644
--- a/internal/llm/tools/ls.go
+++ b/internal/llm/tools/ls.go
@@ -8,7 +8,7 @@ import (
"path/filepath"
"strings"
- "github.com/kujtimiihoxha/termai/internal/config"
+ "github.com/kujtimiihoxha/opencode/internal/config"
)
type LSParams struct {
diff --git a/internal/llm/tools/mocks_test.go b/internal/llm/tools/mocks_test.go
index 321f09ac1..81993160c 100644
--- a/internal/llm/tools/mocks_test.go
+++ b/internal/llm/tools/mocks_test.go
@@ -9,9 +9,9 @@ import (
"time"
"github.com/google/uuid"
- "github.com/kujtimiihoxha/termai/internal/history"
- "github.com/kujtimiihoxha/termai/internal/permission"
- "github.com/kujtimiihoxha/termai/internal/pubsub"
+ "github.com/kujtimiihoxha/opencode/internal/history"
+ "github.com/kujtimiihoxha/opencode/internal/permission"
+ "github.com/kujtimiihoxha/opencode/internal/pubsub"
)
// Mock permission service for testing
diff --git a/internal/llm/tools/shell/shell.go b/internal/llm/tools/shell/shell.go
index 4a776478a..e25bdf3ea 100644
--- a/internal/llm/tools/shell/shell.go
+++ b/internal/llm/tools/shell/shell.go
@@ -126,10 +126,10 @@ func (s *PersistentShell) execCommand(command string, timeout time.Duration, ctx
}
tempDir := os.TempDir()
- stdoutFile := filepath.Join(tempDir, fmt.Sprintf("termai-stdout-%d", time.Now().UnixNano()))
- stderrFile := filepath.Join(tempDir, fmt.Sprintf("termai-stderr-%d", time.Now().UnixNano()))
- statusFile := filepath.Join(tempDir, fmt.Sprintf("termai-status-%d", time.Now().UnixNano()))
- cwdFile := filepath.Join(tempDir, fmt.Sprintf("termai-cwd-%d", time.Now().UnixNano()))
+ stdoutFile := filepath.Join(tempDir, fmt.Sprintf("opencode-stdout-%d", time.Now().UnixNano()))
+ stderrFile := filepath.Join(tempDir, fmt.Sprintf("opencode-stderr-%d", time.Now().UnixNano()))
+ statusFile := filepath.Join(tempDir, fmt.Sprintf("opencode-status-%d", time.Now().UnixNano()))
+ cwdFile := filepath.Join(tempDir, fmt.Sprintf("opencode-cwd-%d", time.Now().UnixNano()))
defer func() {
os.Remove(stdoutFile)
diff --git a/internal/llm/tools/sourcegraph.go b/internal/llm/tools/sourcegraph.go
index a6f2c8afb..0d38c975f 100644
--- a/internal/llm/tools/sourcegraph.go
+++ b/internal/llm/tools/sourcegraph.go
@@ -218,7 +218,7 @@ func (t *sourcegraphTool) Run(ctx context.Context, call ToolCall) (ToolResponse,
}
req.Header.Set("Content-Type", "application/json")
- req.Header.Set("User-Agent", "termai/1.0")
+ req.Header.Set("User-Agent", "opencode/1.0")
resp, err := client.Do(req)
if err != nil {
diff --git a/internal/llm/tools/view.go b/internal/llm/tools/view.go
index 7450a84bf..3fa4ca116 100644
--- a/internal/llm/tools/view.go
+++ b/internal/llm/tools/view.go
@@ -10,8 +10,8 @@ import (
"path/filepath"
"strings"
- "github.com/kujtimiihoxha/termai/internal/config"
- "github.com/kujtimiihoxha/termai/internal/lsp"
+ "github.com/kujtimiihoxha/opencode/internal/config"
+ "github.com/kujtimiihoxha/opencode/internal/lsp"
)
type ViewParams struct {
diff --git a/internal/llm/tools/write.go b/internal/llm/tools/write.go
index bb49381fd..261865c39 100644
--- a/internal/llm/tools/write.go
+++ b/internal/llm/tools/write.go
@@ -8,11 +8,11 @@ import (
"path/filepath"
"time"
- "github.com/kujtimiihoxha/termai/internal/config"
- "github.com/kujtimiihoxha/termai/internal/diff"
- "github.com/kujtimiihoxha/termai/internal/history"
- "github.com/kujtimiihoxha/termai/internal/lsp"
- "github.com/kujtimiihoxha/termai/internal/permission"
+ "github.com/kujtimiihoxha/opencode/internal/config"
+ "github.com/kujtimiihoxha/opencode/internal/diff"
+ "github.com/kujtimiihoxha/opencode/internal/history"
+ "github.com/kujtimiihoxha/opencode/internal/lsp"
+ "github.com/kujtimiihoxha/opencode/internal/permission"
)
type WriteParams struct {
diff --git a/internal/llm/tools/write_test.go b/internal/llm/tools/write_test.go
index 2264f36fb..b5ecb3fda 100644
--- a/internal/llm/tools/write_test.go
+++ b/internal/llm/tools/write_test.go
@@ -8,7 +8,7 @@ import (
"testing"
"time"
- "github.com/kujtimiihoxha/termai/internal/lsp"
+ "github.com/kujtimiihoxha/opencode/internal/lsp"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)