{"id":14964947,"url":"https://github.com/codito/arey","last_synced_at":"2026-03-10T11:31:35.161Z","repository":{"id":187801752,"uuid":"669451880","full_name":"codito/arey","owner":"codito","description":"Simple large language model playground app","archived":false,"fork":false,"pushed_at":"2025-10-15T12:24:08.000Z","size":9122,"stargazers_count":6,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-19T23:58:24.200Z","etag":null,"topics":["ai","cli","cpu-inference","gguf","large-language-models","llama2","llamacpp","llm","local-model","mistral"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codito.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-22T10:21:30.000Z","updated_at":"2025-10-15T12:23:25.000Z","dependencies_parsed_at":"2023-10-01T19:14:26.817Z","dependency_job_id":"207808e9-709a-4a8f-a3d4-f43ce85ad63b","html_url":"https://github.com/codito/arey","commit_stats":{"total_commits":77,"total_committers":1,"mean_commits":77.0,"dds":0.0,"last_synced_commit":"6c130f662bf6f189c54dbde76cff5daf9bedf907"},"previous_names":["codito/myl","codito/arey"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/codito/arey","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codito%2Farey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codito%2Farey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codito%2Farey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codito%2Farey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codito","download_url":"https://codeload.github.com/codito/arey/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codito%2Farey/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280942606,"owners_count":26417736,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-25T02:00:06.499Z","response_time":81,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","cli","cpu-inference","gguf","large-language-models","llama2","llamacpp","llm","local-model","mistral"],"created_at":"2024-09-24T13:34:00.606Z","updated_at":"2025-10-25T10:30:56.471Z","avatar_url":"https://github.com/codito.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# arey\n\n\u003e Arey (अरे, sanskrit) — ind. Interjection of calling.\n\nArey is a simple large language model playground in your terminal.\n\n- ✨ Command line interface, built with Rust, runs everywhere.\n- 🤖 Use any llama.cpp model, or an openai compatible endpoint.\n- 💬 Chat with your favorite local models. CPU friendly 🍀\n- 🙋 Ask anything to AI models with a single command.\n- 📋 Supercharged prompt fine-tuning workflow ❤️ Edit your prompt in _any_ editor\n  and `arey` will generate a completion on save.\n- 🔓 No telemetry, completely private with local models, internet optional (if using tools).\n- 🤖 Configurable agents for specialized tasks.\n- 🔧 Extensible with tools for web search, file operations, and more.\n\nSee [Get Started](https://apps.codito.in/arey) or notes below for a quick guide.\n\nhttps://github.com/codito/arey/assets/28766/6b886e49-6124-4256-84d9-20449c783a34\n\n## Installation\n\n**From source:**\n\n```sh\ngit clone https://github.com/codito/arey.git\ncd arey\ncargo build --release\n\n# Build with vulkan\ncargo build --features vulkan --release\n\n# Build with CUDA\ncargo build --features cuda --release\n\n# Run the `crates/arey` package\n```\n\n**Binary releases:**\nDownload the latest release from [GitHub Releases](https://github.com/codito/arey/releases).\n\n## Usage\n\n```sh\n❯ arey --help\nUsage: arey [OPTIONS] COMMAND [ARGS]...\n\n  Arey - a simple large language model app.\n\nOptions:\n  -v, --verbose BOOLEAN  Show verbose logs.\n  --help                 Show this message and exit.\n\nCommands:\n  ask   Run an instruction and generate response.\n  chat  Chat with an AI model.\n  play  Watch FILE for model, prompt and generate response on edit.\n```\n\nOn the first run, `arey` will create a configuration file in following location:\n\n- `~/.config/arey/arey.yml` for Linux or Mac systems.\n- `~/.arey/arey.yml` for Windows.\n\nPlease update the `models` section in the config yml to your local model path.\n\n### 1. Ask Arey something!\n\n`arey ask \"Who is Seneca? Tell me one of his teachings\"`\n\n### 2. Chat with Arey\n\n`arey chat`\n\n### 3. Use specialized Agents\n\n`arey` supports specialized agents for different tasks:\n\n```bash\n# Ask a research agent to find information\narey ask \"@researcher What are the latest developments in quantum computing?\"\n\n# Chat with a code expert\narey chat\n\u003e @coder Help me debug this Rust function: fn main() { println!(\"Hello\"); }\n\n# Use a creative writing assistant\narey ask \"@writer Write a short story about a robot learning to paint\"\n```\n\n### 4. Run Arey in play mode\n\nUse to fine-tune a prompt in your editor while `arey` keeps completing your prompt on every save.\n\n```sh\n❯ arey play /tmp/arey_playzl9igj3d.md\n\nWelcome to arey play! Edit the play file below in your favorite editor and I'll generate a\nresponse for you. Use `Ctrl+C` to abort play session.\n\nWatching `/tmp/arey_playzl9igj3d.md` for changes...\n\n───────────────────────────────────── 2024-01-21 17:20:01 ──────────────────────────────────────\n✓ Model loaded. 0.57s.\n\nLife is short because it passes by quickly and can end at any moment. We should make the most of\nour time here on earth and live a virtuous life according to stoicism.\n\n◼ Canceled.\n\nWatching `/tmp/arey_playzl9igj3d.md` for changes...\n```\n\n## Development\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for development guidelines.\n\n## Configuration\n\nArey uses YAML configuration files:\n\n- **Config file**: `~/.config/arey/arey.yml` (Linux/Mac) or `~/.arey/arey.yml` (Windows)\n- **Agents directory**: `~/.config/arey/agents/` for custom agent definitions\n\nThe configuration includes model definitions, agent personas, and tool settings. See [docs/config.md](./docs/config.md) for detailed configuration options.\n\n## License\n\nGPLv3 or later\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodito%2Farey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodito%2Farey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodito%2Farey/lists"}