{"id":13450465,"url":"https://github.com/BloopAI/bloop","last_synced_at":"2025-03-23T16:31:39.503Z","repository":{"id":64665794,"uuid":"576642715","full_name":"BloopAI/bloop","owner":"BloopAI","description":"bloop is a fast code search engine written in Rust.","archived":true,"fork":false,"pushed_at":"2024-12-04T17:39:21.000Z","size":79654,"stargazers_count":9467,"open_issues_count":43,"forks_count":582,"subscribers_count":64,"default_branch":"oss","last_synced_at":"2025-03-16T03:35:42.882Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://bloop.ai","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BloopAI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2022-12-10T14:04:30.000Z","updated_at":"2025-03-15T23:21:37.000Z","dependencies_parsed_at":"2024-01-29T14:45:52.779Z","dependency_job_id":"56e3593c-cf26-4166-9a71-fe0c54d89126","html_url":"https://github.com/BloopAI/bloop","commit_stats":null,"previous_names":[],"tags_count":49,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BloopAI%2Fbloop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BloopAI%2Fbloop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BloopAI%2Fbloop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BloopAI%2Fbloop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BloopAI","download_url":"https://codeload.github.com/BloopAI/bloop/tar.gz/refs/heads/oss","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245130818,"owners_count":20565721,"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","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":[],"created_at":"2024-07-31T07:00:34.877Z","updated_at":"2025-03-23T16:31:39.493Z","avatar_url":"https://github.com/BloopAI.png","language":"Rust","readme":"\u003cpicture\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://assets.bloop.ai/bloop_github_logo_dark.png\"\u003e\n  \u003cimg alt=\"bloop logo\" src=\"https://assets.bloop.ai/bloop_github_logo_light.png\"\u003e\n\u003c/picture\u003e\n\nbloop is ChatGPT for your code. Ask questions in natural language, search for code and generate patches using your existing codebase as context. \n\nEngineers are increasing their productivity by using bloop to:\n- Explain how files or features work in simple language\n- Write new features, using their code as context\n- Understand how to use poorly documented open source libraries\n- Pinpoint errors\n- Ask questions about English language codebases in other languages\n- Reduce code duplication by checking for existing functionality\n\nhttps://github.com/BloopAI/bloop/assets/7957964/01db3ccb-4af0-49a0-92d6-5a9c42357a51\n\n## Features\n\n- AI-based conversational search\n- Code Studio, an LLM playground that uses your code as context\n- Blazing fast regex search\n- Sync your local and GitHub repositories\n- Sophisticated query filters so you can narrow down your results\n- Find functions, variables or traits with symbol search\n- Precise code navigation (go-to-reference and go-to-definition) for 10+ of the most popular languages built with [Tree-sitter](https://tree-sitter.github.io/tree-sitter/)\n- Privacy focussed on-device embedding for semantic search\n\nbloop stands on the shoulders of the Rust ecosystem. Our search indexes are powered by [Tantivy](https://github.com/quickwit-oss/tantivy) and [Qdrant](https://github.com/qdrant/qdrant), and our multi-platform app is built with [Tauri](https://github.com/tauri-apps/tauri).\n\nhttps://github.com/BloopAI/bloop/assets/7957964/93715188-d8d5-477b-8cd1-95d9cbd368cb\n\n## Get Started\n\nThe simplest way to get started with bloop is to [download the app](https://github.com/BloopAI/bloop/releases) and follow the onboarding steps. Checkout our [getting started guide](https://bloop.ai/understand/docs/getting-started) and our references for [conversational](https://bloop.ai/understand/docs/natural-language-queries) and [regex](https://bloop.ai/understand/docs/regex-queries) search and [Code Studio](https://bloop.ai/understand/docs/code-studio).\n\nFor instructions on how to build from source or run bloop from the command line, check out these pages:\n\n- [Build bloop app from source](./apps/desktop/README.md)\n- [Run bloop from the command line](./server/README.md)\n\nIf you encounter any index issues you can wipe the bloop cache and reindex. Instructions on how to do this on different platforms [are here](./apps/desktop/README.md).\n\n## Building From Source\n\nYou can build bloop from source and run it with your own OpenAI API key. Clone the repo, make sure the `oss` branch is checked out, and create a file called `local_config.json` at the top-level of the repo. `local_config.json` should contain the following fields:\n\n```json\n{\n    \"github_access_token\": \"\u003cYOUR_GITHUB_ACCESS_TOKEN\u003e\",\n    \"openai_api_key\": \"\u003cYOUR_OPENAI_API_KEY\u003e\"\n}\n```\n\nThen follow [these installation instructions](./apps/desktop/README.md). If built from source, bloop will not collect any telemetry. \n\n## Contributing\n\n[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/BloopAI/bloop)\n\n[![Open in Codeanywhere](https://codeanywhere.com/img/open-in-codeanywhere-btn.svg)](https://app.codeanywhere.com/#https://github.com/BloopAI/bloop)\n\nWe welcome contributions big and small! Before jumping in please read [our contributors guide](./CONTRIBUTING.md) and [our code of conduct](./CODE_OF_CONDUCT.md).\n\nHere's how to find your way around the repo:\n\n- `apps/desktop`: The Tauri app\n- `server/bleep`: The Rust backend which contains the core search and navigation logic\n- `client`: The React frontend\n\nWe use Git LFS for dependencies that are expensive to build.\n\nTo make sure you have everything you need to start building, you'll need to\ninstall the `git-lfs` package for your favourite operating system, then run the\nfollowing commands in this repo:\n\n    git lfs install\n    git lfs pull\n\nIf you find a bug or have a feature request, [open an issue](https://github.com/BloopAI/bloop/issues)! You can find the application logs here:\n\n| OS      | Logs Path |\n| ----------- | ----------- |\n| MacOS      | `~/Library/Application\\ Support/ai.bloop.bloop/bleep/logs`       |\n| Windows   | `%APPDATA%/bloop/bleep/logs`        |\n| Linux   | `~/.local/share/bloop/bleep/logs`        |\n\n## Privacy\n\nWe store as little data as possible. We use telemetry to helps us identify bugs and make data-driven product decisions. You can read our full privacy policy [here](https://bloop.ai/privacy).\n\n## License\n\nbloop is licensed under the `Apache 2.0` license as defined in [LICENSE](./LICENSE).\n\n","funding_links":[],"categories":["TypeScript","[Bloop](https://bloop.ai/)","Rust","Projects","HarmonyOS","Applications and Demos","Developer \u0026 Coding Assistants","By Industry","\u003cspan id=\"code\"\u003eCode\u003c/span\u003e","A01_文本生成_文本对话","📦 Legacy \u0026 Inactive Projects","others","语言资源库","Learning","Repos","精选开源项目合集","By Language","Code Assistant"],"sub_categories":["Links","Windows Manager","LLM (Large Language Model)","Code Generation \u0026 Refactoring","Data Science","\u003cspan id=\"tool\"\u003eLLM (LLM \u0026 Tool)\u003c/span\u003e","大语言对话模型及数据","rust","Repositories","GPT工具","Rust"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FBloopAI%2Fbloop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FBloopAI%2Fbloop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FBloopAI%2Fbloop/lists"}