diff --git a/cmd/index.go b/cmd/index.go index a2e14f3..a568ec8 100644 --- a/cmd/index.go +++ b/cmd/index.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/amit/docsgraphcontext/internal/llm" - "github.com/amit/docsgraphcontext/internal/pipeline" - "github.com/amit/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/pipeline" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" "github.com/spf13/cobra" ) diff --git a/cmd/root.go b/cmd/root.go index 83e69f0..84ddb73 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/amit/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" "github.com/spf13/cobra" ) diff --git a/cmd/serve.go b/cmd/serve.go index d3bd0d4..d89a3a6 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -10,10 +10,10 @@ import ( "syscall" "time" - "github.com/amit/docsgraphcontext/internal/api" - "github.com/amit/docsgraphcontext/internal/embedder" - "github.com/amit/docsgraphcontext/internal/llm" - "github.com/amit/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/internal/api" + "github.com/RandomCodeSpace/docsgraphcontext/internal/embedder" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" "github.com/spf13/cobra" ) diff --git a/cmd/stats.go b/cmd/stats.go index 97d2852..42ac1f7 100644 --- a/cmd/stats.go +++ b/cmd/stats.go @@ -6,7 +6,7 @@ import ( "os" "text/tabwriter" - "github.com/amit/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" "github.com/spf13/cobra" ) diff --git a/go.mod b/go.mod index 0c0a8da..d9fa347 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/amit/docsgraphcontext +module github.com/RandomCodeSpace/docsgraphcontext go 1.25.0 diff --git a/internal/api/handlers.go b/internal/api/handlers.go index 1e6dbe4..9cc666c 100644 --- a/internal/api/handlers.go +++ b/internal/api/handlers.go @@ -10,12 +10,12 @@ import ( "strconv" "sync" - "github.com/amit/docsgraphcontext/internal/config" - "github.com/amit/docsgraphcontext/internal/embedder" - "github.com/amit/docsgraphcontext/internal/llm" - "github.com/amit/docsgraphcontext/internal/pipeline" - "github.com/amit/docsgraphcontext/internal/search" - "github.com/amit/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/embedder" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/pipeline" + "github.com/RandomCodeSpace/docsgraphcontext/internal/search" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" ) type handlers struct { diff --git a/internal/api/router.go b/internal/api/router.go index e58a104..c687fb3 100644 --- a/internal/api/router.go +++ b/internal/api/router.go @@ -3,12 +3,12 @@ package api import ( "net/http" - "github.com/amit/docsgraphcontext/internal/config" - "github.com/amit/docsgraphcontext/internal/embedder" - "github.com/amit/docsgraphcontext/internal/llm" - "github.com/amit/docsgraphcontext/internal/mcp" - "github.com/amit/docsgraphcontext/internal/store" - "github.com/amit/docsgraphcontext/ui" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/embedder" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/mcp" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/ui" ) // NewRouter builds the single http.ServeMux with all routes. diff --git a/internal/community/summarizer.go b/internal/community/summarizer.go index 6d5602e..b405b03 100644 --- a/internal/community/summarizer.go +++ b/internal/community/summarizer.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/amit/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" ) // CommunityReport holds LLM-generated community metadata. diff --git a/internal/crawler/crawler.go b/internal/crawler/crawler.go index 2ef191a..8b58017 100644 --- a/internal/crawler/crawler.go +++ b/internal/crawler/crawler.go @@ -16,7 +16,7 @@ import ( "golang.org/x/net/html" - "github.com/amit/docsgraphcontext/internal/loader" + "github.com/RandomCodeSpace/docsgraphcontext/internal/loader" ) // Page is a fetched documentation page. diff --git a/internal/embedder/embedder.go b/internal/embedder/embedder.go index 9350c24..8e96242 100644 --- a/internal/embedder/embedder.go +++ b/internal/embedder/embedder.go @@ -5,7 +5,7 @@ import ( "fmt" "sync" - "github.com/amit/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" ) // Embedder batches text → []float32 vectors using an LLM provider. diff --git a/internal/extractor/claims.go b/internal/extractor/claims.go index 2190540..15d2951 100644 --- a/internal/extractor/claims.go +++ b/internal/extractor/claims.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/amit/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" ) // Claim is a factual covariate extracted from text. diff --git a/internal/extractor/entities.go b/internal/extractor/entities.go index f17273d..e9c5947 100644 --- a/internal/extractor/entities.go +++ b/internal/extractor/entities.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/amit/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" ) // Entity extracted from document text. diff --git a/internal/llm/azure.go b/internal/llm/azure.go index 7cef2e5..66c8516 100644 --- a/internal/llm/azure.go +++ b/internal/llm/azure.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/amit/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" "github.com/tmc/langchaingo/llms" "github.com/tmc/langchaingo/llms/openai" ) diff --git a/internal/llm/huggingface.go b/internal/llm/huggingface.go index 26a92fe..09d0034 100644 --- a/internal/llm/huggingface.go +++ b/internal/llm/huggingface.go @@ -8,7 +8,7 @@ import ( "io" "net/http" - "github.com/amit/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" ) // huggingFaceProvider calls a local TGI (Text Generation Inference) endpoint. diff --git a/internal/llm/ollama.go b/internal/llm/ollama.go index 75a3602..8b7ad67 100644 --- a/internal/llm/ollama.go +++ b/internal/llm/ollama.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/amit/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" "github.com/tmc/langchaingo/llms" "github.com/tmc/langchaingo/llms/ollama" ) diff --git a/internal/llm/provider.go b/internal/llm/provider.go index 8b38657..a33f272 100644 --- a/internal/llm/provider.go +++ b/internal/llm/provider.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/amit/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" ) // Option configures LLM completion. diff --git a/internal/mcp/server.go b/internal/mcp/server.go index 58a178a..2bffa18 100644 --- a/internal/mcp/server.go +++ b/internal/mcp/server.go @@ -3,10 +3,10 @@ package mcp import ( "net/http" - "github.com/amit/docsgraphcontext/internal/config" - "github.com/amit/docsgraphcontext/internal/embedder" - "github.com/amit/docsgraphcontext/internal/llm" - "github.com/amit/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/embedder" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" mcpgo "github.com/mark3labs/mcp-go/mcp" "github.com/mark3labs/mcp-go/server" ) diff --git a/internal/mcp/tools.go b/internal/mcp/tools.go index dad3426..4a9f634 100644 --- a/internal/mcp/tools.go +++ b/internal/mcp/tools.go @@ -5,7 +5,7 @@ import ( "encoding/json" "fmt" - "github.com/amit/docsgraphcontext/internal/search" + "github.com/RandomCodeSpace/docsgraphcontext/internal/search" mcpgo "github.com/mark3labs/mcp-go/mcp" "github.com/mark3labs/mcp-go/server" ) diff --git a/internal/pipeline/pipeline.go b/internal/pipeline/pipeline.go index 6ac3c51..25bb73e 100644 --- a/internal/pipeline/pipeline.go +++ b/internal/pipeline/pipeline.go @@ -12,15 +12,15 @@ import ( "strings" "sync" - "github.com/amit/docsgraphcontext/internal/chunker" - "github.com/amit/docsgraphcontext/internal/community" - "github.com/amit/docsgraphcontext/internal/config" - "github.com/amit/docsgraphcontext/internal/crawler" - "github.com/amit/docsgraphcontext/internal/embedder" - "github.com/amit/docsgraphcontext/internal/extractor" - "github.com/amit/docsgraphcontext/internal/llm" - "github.com/amit/docsgraphcontext/internal/loader" - "github.com/amit/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/internal/chunker" + "github.com/RandomCodeSpace/docsgraphcontext/internal/community" + "github.com/RandomCodeSpace/docsgraphcontext/internal/config" + "github.com/RandomCodeSpace/docsgraphcontext/internal/crawler" + "github.com/RandomCodeSpace/docsgraphcontext/internal/embedder" + "github.com/RandomCodeSpace/docsgraphcontext/internal/extractor" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/loader" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" "github.com/google/uuid" "github.com/schollz/progressbar/v3" ) diff --git a/internal/search/global.go b/internal/search/global.go index f2976a6..4bb74c4 100644 --- a/internal/search/global.go +++ b/internal/search/global.go @@ -6,9 +6,9 @@ import ( "sort" "strings" - "github.com/amit/docsgraphcontext/internal/embedder" - "github.com/amit/docsgraphcontext/internal/llm" - "github.com/amit/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/internal/embedder" + "github.com/RandomCodeSpace/docsgraphcontext/internal/llm" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" ) // GlobalSearchResult aggregates community summaries. diff --git a/internal/search/local.go b/internal/search/local.go index daba309..5a1b7d5 100644 --- a/internal/search/local.go +++ b/internal/search/local.go @@ -4,8 +4,8 @@ import ( "context" "sort" - "github.com/amit/docsgraphcontext/internal/embedder" - "github.com/amit/docsgraphcontext/internal/store" + "github.com/RandomCodeSpace/docsgraphcontext/internal/embedder" + "github.com/RandomCodeSpace/docsgraphcontext/internal/store" ) // ChunkResult is a search result from chunk/vector search. diff --git a/main.go b/main.go index ce2a56f..d19e193 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/amit/docsgraphcontext/cmd" +import "github.com/RandomCodeSpace/docsgraphcontext/cmd" func main() { cmd.Execute()