diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..7ed3b73 --- /dev/null +++ b/.env.example @@ -0,0 +1,17 @@ +# LLM Backend: "ollama" or "openai" +LLM_BACKEND=ollama + +# Ollama settings +OLLAMA_URL=http://192.168.86.172:11434 +OLLAMA_MODEL=qwen2.5:7b + +# OpenAI-compatible settings (Kiro gateway, OpenRouter, etc.) +# OPENAI_URL=http://192.168.86.11:8000 +# OPENAI_MODEL=claude-haiku-4 +# OPENAI_API_KEY=not-needed + +# Repo to ingest +TARGET_REPO=https://github.com/labstack/echo.git + +# Parallelism +MAX_CONCURRENT=4 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8470662 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +devintel.db +repos/ +__pycache__/ +*.pyc +.env +.venv/