Add OpenRouter support (--tool openrouter)#132
Open
valentt wants to merge 1 commit intosnarktank:mainfrom
Open
Add OpenRouter support (--tool openrouter)#132valentt wants to merge 1 commit intosnarktank:mainfrom
valentt wants to merge 1 commit intosnarktank:mainfrom
Conversation
Adds OpenRouter as a third tool option alongside amp and claude. This enables running Ralph with cloud LLMs via OpenRouter API, no local AI tools needed. Usage: OPENROUTER_API_KEY=sk-... ./ralph.sh --tool openrouter 10 OPENROUTER_MODEL=qwen/qwen3-235b-a22b:free ./ralph.sh --tool openrouter New files: - openrouter_call.py: OpenRouter API caller (reads prompt.md, calls API) Supports any OpenRouter model including free tier models like nvidia/llama-3.1-nemotron-ultra-253b:free. Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds OpenRouter as a third tool option alongside
ampandclaude. This enables running Ralph with cloud LLMs via the OpenRouter API — no local AI coding tools required.Usage
Changes
openrouteras valid--tooloption with model selection viaOPENROUTER_MODELenv varurllib), no dependencies neededWhy
Not everyone has Amp or Claude Code installed. OpenRouter provides access to powerful free models (Nemotron, Qwen, Llama) via a simple API key, making Ralph accessible to more developers.