| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
CLI tool for importing, chunking, and embedding content from WordPress and GitHub into a vector database.
IKE-GO processes content through a 5-step pipeline:
git clone https://github.com/code-sleuth/ike-go.git
cd ike-go
cp .env.example .env # Add your credentials
make build
./bin/ike-go migrateSet these environment variables in .env:
# Required - Database
TURSO_DATABASE_URL="libsql://your-db.turso.io"
TURSO_AUTH_TOKEN="your-token"
# Required - At least one embedding provider
OPENAI_API_KEY="sk-..."
TOGETHER_API_KEY="..."
# Optional
GITHUB_TOKEN="ghp_..." # For private repos
STAGE="local" # local, dev, prodA typical workflow importing content from multiple sources:
# 1. Run database migrations
./bin/ike-go migrate
# 2. Import WordPress content (knowledgebase articles)
./bin/ike-go import --url "https://wsform.com/wp-json/wp/v2/knowledgebase"
# 3. Import a GitHub repository
./bin/ike-go import --url "https://github.com/code-sleuth/outh"
# 4. View imported sources
./bin/ike-go sources list
# 5. View processed documents
./bin/ike-go documents list
# 6. Re-embed existing content with a different model
./bin/ike-go transform --download-id "<uuid>" --model "text-embedding-3-large"| Command | Description |
|---|---|
| migrate | Run database migrations |
| import --url <url> | Import and embed content from URL |
| transform --download-id <uuid> | Re-process existing downloads |
| sources list | List all content sources |
| sources get <id> | Get source details |
| documents list | List all documents |
| documents get <id> | Get document details |
| Flag | Default | Description |
|---|---|---|
| --model | text-embedding-3-small | Embedding model |
| --tokens | 100 | Max tokens per chunk |
| --concurrency | 5 | Worker pool size |
OpenAI
Together AI
make build # Build binary (includes fmt + lint)
make test # Run tests with coverage
make lint # Run golangci-lint
make fmt # Format code| Back | FazBrowse Home | New Git URL |