summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--cmd/lsp/main.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/cmd/lsp/main.go b/cmd/lsp/main.go
deleted file mode 100644
index 0c7f79329..000000000
--- a/cmd/lsp/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package main
-
-import (
- "context"
- "fmt"
-
- "github.com/kujtimiihoxha/termai/internal/llm/tools"
-)
-
-func main() {
- t := tools.NewSourcegraphTool()
- r, _ := t.Run(context.Background(), tools.ToolCall{
- Input: `{"query": "context.WithCancel lang:go"}`,
- })
- fmt.Println(r.Content)
-}