Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cmd/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/amit/docsgraphcontext/internal/config"
"github.com/RandomCodeSpace/docsgraphcontext/internal/config"
"github.com/spf13/cobra"
)

Expand Down
8 changes: 4 additions & 4 deletions cmd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"text/tabwriter"

"github.com/amit/docsgraphcontext/internal/store"
"github.com/RandomCodeSpace/docsgraphcontext/internal/store"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/amit/docsgraphcontext
module github.com/RandomCodeSpace/docsgraphcontext

go 1.25.0

Expand Down
12 changes: 6 additions & 6 deletions internal/api/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
12 changes: 6 additions & 6 deletions internal/api/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion internal/community/summarizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion internal/crawler/crawler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion internal/embedder/embedder.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion internal/extractor/claims.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion internal/extractor/entities.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"strings"

"github.com/amit/docsgraphcontext/internal/llm"
"github.com/RandomCodeSpace/docsgraphcontext/internal/llm"
)

// Entity extracted from document text.
Expand Down
2 changes: 1 addition & 1 deletion internal/llm/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/llm/huggingface.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion internal/llm/ollama.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/llm/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

"github.com/amit/docsgraphcontext/internal/config"
"github.com/RandomCodeSpace/docsgraphcontext/internal/config"
)

// Option configures LLM completion.
Expand Down
8 changes: 4 additions & 4 deletions internal/mcp/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/mcp/tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
18 changes: 9 additions & 9 deletions internal/pipeline/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
6 changes: 3 additions & 3 deletions internal/search/global.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions internal/search/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/amit/docsgraphcontext/cmd"
import "github.com/RandomCodeSpace/docsgraphcontext/cmd"

func main() {
cmd.Execute()
Expand Down
Loading