$git clone https://github.com/PromptMixerDev/prompt-mixer-app-ce---
| 1 | # Prompt Mixer CE |
| 2 | |
| 3 | [](https://opensource.org/licenses/MIT) |
| 4 | [](https://github.com/PromptMixerDev/prompt-mixer-releases) |
| 5 | [](https://nodejs.org) |
| 6 | [](https://www.typescriptlang.org/) |
| 7 | [](https://prettier.io/) |
| 8 | [](package.json) |
| 9 | [](CONTRIBUTING.md) |
| 10 | |
| 11 | <div align="center"> |
| 12 | |
| 13 | --- |
| 14 | |
| 15 | [](https://buy.stripe.com/fZeaGW3q1b10deU9AF) |
| 16 | |
| 17 | --- |
| 18 | |
| 19 | </div> |
| 20 | |
| 21 | Prompt Mixer is an open-source desktop application for testing and managing prompt chains. It provides a powerful environment for experimenting with AI-driven conversations and complex dialogues. |
| 22 | |
| 23 |  |
| 24 | |
| 25 | ## Key Features |
| 26 | |
| 27 | - ⛓️ Prompt Chaining - Construct sequences of prompts that pass context and information to enable complex dialogues. |
| 28 | - 🔄 Workflows - Create sophisticated analysis chains using an intuitive form-based interface to build multi-step prompt workflows. |
| 29 | - 🔀 Extensibility - Bring in custom models and leverage third-party APIs via connectors. |
| 30 | - 🧪 Testing & Validation - Continuously experiment with and evaluate prompts before putting them into production. |
| 31 | |
| 32 | ## Getting Started |
| 33 | |
| 34 | To learn more about installing and using Prompt Mixer, refer to the [Official Documentation](https://docs.promptmixer.dev/). |
| 35 | |
| 36 | The documentation provides comprehensive guides on: |
| 37 | |
| 38 | - Installing and configuring Prompt Mixer |
| 39 | - Creating and managing prompts and prompt chains |
| 40 | - Selecting AI models and fine-tuning behavior |
| 41 | - Developing custom connectors |
| 42 | - Testing and deploying prompts |
| 43 | - Integrating prompts into applications |
| 44 | - and more! |
| 45 | |
| 46 | ## Installation |
| 47 | |
| 48 | ### Download Latest Build |
| 49 | |
| 50 | Get the latest version of Prompt Mixer CE: |
| 51 | |
| 52 | [](https://github.com/PromptMixerDev/prompt-mixer-app-ce/releases/download/v0.2.9/PromptMixer-0.2.9.arm64.dmg) |
| 53 | [](https://github.com/PromptMixerDev/prompt-mixer-app-ce/releases/download/v0.2.9/PromptMixer-0.2.9.x64.dmg) |
| 54 | [](https://github.com/PromptMixerDev/prompt-mixer-app-ce/releases/download/v0.2.9/PromptMixer.0.2.9.exe) |
| 55 | [](https://github.com/PromptMixerDev/prompt-mixer-app-ce/releases/download/v0.2.9/PromptMixer-0.2.9.AppImage) |
| 56 | |
| 57 | Or visit our [releases page](https://github.com/PromptMixerDev/prompt-mixer-app-ce/releases) to see all available versions. |
| 58 | |
| 59 | ### Development Setup |
| 60 | |
| 61 | These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. |
| 62 | |
| 63 | ### Prerequisites |
| 64 | |
| 65 | Ensure you have the following installed on your machine: |
| 66 | |
| 67 | - [Node.js](https://nodejs.org/) |
| 68 | - [Yarn](https://yarnpkg.com/) |
| 69 | |
| 70 | |
| 71 | 1. **Clone the repository:** |
| 72 | ```bash |
| 73 | git clone https://github.com/PromptMixerDev/prompt-mixer-app-ce |
| 74 | ``` |
| 75 | |
| 76 | 2. **Navigate to the project directory:** |
| 77 | ```bash |
| 78 | cd prompt-mixer-app-ce |
| 79 | ``` |
| 80 | |
| 81 | 3. **Install dependencies using Yarn:** |
| 82 | ```bash |
| 83 | yarn install |
| 84 | ``` |
| 85 | |
| 86 | ## Running the Application |
| 87 | |
| 88 | To run the application locally: |
| 89 | |
| 90 | ```bash |
| 91 | yarn start |
| 92 | ``` |
| 93 | |
| 94 | ## Building the Project |
| 95 | |
| 96 | To build the project on your local machine: |
| 97 | |
| 98 | ```bash |
| 99 | yarn build |
| 100 | ``` |
| 101 | |
| 102 | This will create a production-ready build of the application in the `dist` directory. |
| 103 | |
| 104 | ## Running Tests |
| 105 | |
| 106 | To run the test suite: |
| 107 | |
| 108 | ```bash |
| 109 | yarn test |
| 110 | ``` |
| 111 | |
| 112 | For more detailed information on writing and running test |