25 lines
1.0 KiB
Markdown
Raw Normal View History

2025-04-03 13:18:56 +02:00
# R Vibe Tool
2025-01-04 06:00:03 +01:00
2025-04-03 13:18:56 +02:00
R is a CLI vibe tool for Linux with nice markdown output. It has agent support. Put your instructions into `~/.rcontext.txt`to describe how it should behave. Tip: include the saving of files as instruction step. Use the `index` tool to initialize only source files and no environment / node_modules files to continue on an existing project! Good to instruct that first of your `.rcontext.txt` file.
2025-01-04 16:21:07 +01:00
2025-04-03 13:18:56 +02:00
By default it uses OpenAI GPT-3.5-turbo as the model. It will use my limited OpenAI key as example.
That will thus only work temporary! Good news, Ollama and Claude are also supported
2025-01-05 23:08:20 +01:00
2025-04-03 13:18:56 +02:00
An example what I have vibed with is [this](https://molodetz.nl/projects/streamii/README.md.html).
2025-01-04 17:01:08 +01:00
2025-04-03 13:18:56 +02:00
## How to get it working under OLLAMA
### Ollama molodetz server is slow.
```bash
export R_MODEL="qwen2.5:3b"
export R_BASE_URL="https://ollama.molodetz.nl"
./r
```
2025-01-04 17:01:08 +01:00
2025-04-03 13:18:56 +02:00
## How to get it working under ANTHROPIC CLAUDE
2025-04-02 15:37:59 +02:00
```
2025-04-03 13:18:56 +02:00
export R_MODEL="claude-3-5-haiku-20241022"
export R_BASE_URL="https://api.anthropic.com"
export R_KEY="sk-ant-"
./r
2025-01-04 08:13:54 +01:00
```