Skip to content
@ai-codespark

codespark

AI code generation

claude-code

export ANTHROPIC_BASE_URL="http://localhost:4000"
export ANTHROPIC_AUTH_TOKEN="sk-1234"

npm install -g @anthropic-ai/claude-code@latest

codex

export LITELLM_API_KEY="sk-1234"

npm install -g @openai/codex@native
model = "gemini-2.5-pro"
model_provider = "litellm"

[model_providers.litellm]
name = "LiteLLM"
base_url = "http://localhost:4000/v1"
env_key = "LITELLM_API_KEY"
wire_api = "chat"

cat $HOME/.codex/config.toml

gemini-cli

export GOOGLE_GEMINI_BASE_URL="http://localhost:4000"
export GEMINI_API_KEY="sk-1234"

npm install -g @ai-codespark/gemini-cli@latest
{
  "selectedAuthType": "gemini-api-key",
  "theme": "ANSI"
}

cat $HOME/.gemini/settings.json

gen-cli

export SILICONFLOW_BASE_URL="http://localhost:4000"
export SILICONFLOW_API_KEY="sk-1234"
export GEMINI_MODEL=gemini-2.5-pro

npm install -g @gen-cli/gen-cli@latest
{
  "selectedAuthType": "siliconflow-api-key"
}

cat ~/.gen-cli/settings.json

qwen-code

export OPENAI_BASE_URL="http://localhost:4000"
export OPENAI_API_KEY="sk-1234"
export OPENAI_MODEL="gemini-2.5-pro"

npm install -g @qwen-code/qwen-code@latest
{
  "selectedAuthType": "openai"
}

cat ~/.qwen/settings.json

trae-agent

uv venv
uv sync --all-extras
source .venv/bin/activate
{
  "default_provider": "openai",
  "max_steps": 20,
  "enable_lakeview": false,
  "model_providers": {
    "openai": {
      "api_key": "sk-1234",
      "base_url": "http://localhost:4000",
      "model": "gemini-2.5-pro",
      "max_tokens": 120000,
      "temperature": 0.5,
      "top_p": 1,
      "max_retries": 10
    }
  }
}

cat trae_config.json

Pinned Loading

  1. claude-code claude-code Public

    Forked from anthropics/claude-code

    Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflo…

    Shell

  2. claude-code-router claude-code-router Public

    Forked from musistudio/claude-code-router

    Use Claude Code as the foundation for coding infrastructure, allowing you to decide how to interact with the model while enjoying updates from Anthropic.

    TypeScript

  3. continue continue Public

    Forked from continuedev/continue

    ⏩ Create, share, and use custom AI code assistants with our open-source IDE extensions and hub of models, rules, prompts, docs, and other building blocks

    TypeScript

  4. gen-cli gen-cli Public

    Forked from gen-cli/gen-cli

    Agents of C.L.I.

    TypeScript

  5. vscode-copilot-chat vscode-copilot-chat Public

    Forked from microsoft/vscode-copilot-chat

    Copilot Chat extension for VS Code

    TypeScript

Repositories

Showing 10 of 12 repositories

Top languages

Loading…

Most used topics

Loading…