{"id":13641097,"url":"https://github.com/iansinnott/prompta","last_synced_at":"2025-04-04T13:10:10.474Z","repository":{"id":154765286,"uuid":"626944445","full_name":"iansinnott/prompta","owner":"iansinnott","description":"ChatGPT UI that is keyboard-centric, mobile friendly, and searchable.","archived":false,"fork":false,"pushed_at":"2025-03-21T04:53:33.000Z","size":4115,"stargazers_count":183,"open_issues_count":17,"forks_count":15,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-28T12:06:27.791Z","etag":null,"topics":["chatgpt","gpt","gpt-4","openai-api","sqlite","wasm"],"latest_commit_sha":null,"homepage":"https://chat.prompta.dev","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iansinnott.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["iansinnott"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2023-04-12T13:24:12.000Z","updated_at":"2025-03-22T22:12:41.000Z","dependencies_parsed_at":"2023-11-24T06:23:47.734Z","dependency_job_id":"720ec844-f1e4-479a-acb1-c3217b9ddfe7","html_url":"https://github.com/iansinnott/prompta","commit_stats":null,"previous_names":[],"tags_count":103,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iansinnott%2Fprompta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iansinnott%2Fprompta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iansinnott%2Fprompta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iansinnott%2Fprompta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iansinnott","download_url":"https://codeload.github.com/iansinnott/prompta/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247182344,"owners_count":20897379,"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":["chatgpt","gpt","gpt-4","openai-api","sqlite","wasm"],"created_at":"2024-08-02T01:01:17.706Z","updated_at":"2025-04-04T13:10:10.451Z","avatar_url":"https://github.com/iansinnott.png","language":"Svelte","funding_links":["https://github.com/sponsors/iansinnott"],"categories":["Prompts","Svelte"],"sub_categories":[],"readme":"\u003c!-- display a screenshot --\u003e\n\u003cdiv align=\"center\"\u003e\n\n[\u003cimg src=\"src-tauri/icons/icon_256x256.png\" alt=\"prompta logo\" width=128\u003e](https://www.prompta.dev)\u003cbr\u003e\n\n# Prompta\n\nYet another interface for chatting with ChatGPT (or GPT-4).\n\n[Website](https://www.prompta.dev)\n| [Downloads](https://github.com/iansinnott/prompta/releases)\n| [Launch App](https://chat.prompta.dev)\n\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n![](static/screenshot_20230513023629.png)\n\n\u003c/div\u003e\n\n| Mobile                                       | Search chats                      | Keyboard Centric                                            | Comments                                    |\n| -------------------------------------------- | --------------------------------- | ----------------------------------------------------------- | ------------------------------------------- |\n| ![mobile view](static/screenshot_mobile.png) | ![fts](static/screenshot_fts.png) | ![keyboard centric](static/screenshot_keyboard_centric.png) | ![comments](static/screenshot_comments.png) |\n\n## Features\n\n- [x] Search all previous conversations (full-text!)\n- [x] Sync your chat history across devices\n- [x] Keyboard centric\n- [x] Leave notes on responses, such as \"working code!\" or \"not working\"\n- [x] Keep all your chat history stored locally\n- [x] Search previous chat threads\n- [x] Chat with the latest models (updated dynamically)\n- [x] Use local LLMs like Llama, Mistral, etc\n- [x] Customize the system message\n\n## Roadmap\n\n- [ ] Context-window compression (See #1)\n- [ ] Chat history awareness (See #2)\n\n## How to use\n\n- In your web browser: [chat.prompta.dev](https://chat.prompta.dev)\n- Desktop app: download the latest build from [the releases page](https://github.com/iansinnott/prompta/releases)\n\n### Running on macOS\n\nFor macOS users you will need to right-click the app and select \"Open\" the first time you run it. This is because the app is signed but not notarized.\n\n| Right-click to open                           | Now you can click \"Open\"                      |\n| --------------------------------------------- | --------------------------------------------- |\n| ![macOS open](static/screenshot_macopen1.png) | ![macOS open](static/screenshot_macopen2.png) |\n\n## Developing\n\n`bun` is used for development. You cam try using `yarn`, `bun`, `npm`, etc but other package managers have not been tested and are not deliberately supported:\n\n```bash\nbun install\nbun run dev\n\n# To devlop the Tuari desktop app as well:\nbun run dev:tauri\n```\n\n## Building\n\nTo create a production version of your app:\n\n```bash\nbun run build\n```\n\nIf you want to build only for the browser, ignoring the desktop app:\n\n```bash\nbun run ui:build-static\n```\n\nThe advantage here is that you don't need any Rust dependencies which are required for building Tauri.\n\n## Releasing a new Version\n\n```bash\nbun run release\n```\n\nYou will be prompted to enter a new version number. New versions that don't contain a suffix such as `-beta` or `-alpha` will be published to GitHub.\n\n## Built With\n\n- [SQLite](https://www.sqlite.org/index.html) via [vlcn/cr-sqlite](https://vlcn.io/) - SQLite compiled to WASM running in the browser using CRDTs for conflict-free replication.\n- [Tauri](https://tauri.studio) - A Rust-based alternative to Electron (Only used in desktop builds)\n- [Svelte](https://svelte.dev) - Reactive UI framework\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiansinnott%2Fprompta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiansinnott%2Fprompta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiansinnott%2Fprompta/lists"}