bolt.new-any-llm/README.md

240 lines
9.1 KiB
Markdown
Raw Normal View History

[![bolt.diy: AI-Powered Full-Stack Web Development in the Browser](./public/social_preview_index.jpg)](https://bolt.diy)
2024-10-03 14:00:31 +00:00
# bolt.diy (Previously oTToDev)
Welcome to bolt.diy, the official open source version of Bolt.new (previously known as oTToDev and bolt.new ANY LLM), which allows you to choose the LLM that you use for each prompt! Currently, you can use OpenAI, Anthropic, Ollama, OpenRouter, Gemini, LMStudio, Mistral, xAI, HuggingFace, DeepSeek, or Groq models - and it is easily extended to use any other model supported by the Vercel AI SDK! See the instructions below for running this locally and extending it to include more models.
Check the [bolt.diy Docs](https://stackblitz-labs.github.io/bolt.diy/) for more information. This documentation is still being updated after the transfer.
bolt.diy was originally started by [Cole Medin](https://www.youtube.com/@ColeMedin) but has quickly grown into a massive community effort to build the BEST open source AI coding assistant!
2024-12-11 14:26:41 +00:00
## Join the community for bolt.diy!
https://thinktank.ottomator.ai
2024-12-02 16:38:42 +00:00
2024-12-01 19:13:25 +00:00
## Requested Additions - Feel Free to Contribute!
- ✅ OpenRouter Integration (@coleam00)
- ✅ Gemini Integration (@jonathands)
- ✅ Autogenerate Ollama models from what is downloaded (@yunatamos)
- ✅ Filter models by provider (@jasonm23)
- ✅ Download project as ZIP (@fabwaseem)
- ✅ Improvements to the main bolt.new prompt in `app\lib\.server\llm\prompts.ts` (@kofi-bhr)
- ✅ DeepSeek API Integration (@zenith110)
- ✅ Mistral API Integration (@ArulGandhi)
- ✅ "Open AI Like" API Integration (@ZerxZ)
- ✅ Ability to sync files (one way sync) to local folder (@muzafferkadir)
- ✅ Containerize the application with Docker for easy installation (@aaronbolton)
- ✅ Publish projects directly to GitHub (@goncaloalves)
2024-11-10 19:43:28 +00:00
- ✅ Ability to enter API keys in the UI (@ali00209)
- ✅ xAI Grok Beta Integration (@milutinke)
- ✅ LM Studio Integration (@karrot0)
- ✅ HuggingFace Integration (@ahsan3219)
- ✅ Bolt terminal to see the output of LLM run commands (@thecodacus)
- ✅ Streaming of code output (@thecodacus)
- ✅ Ability to revert code to earlier version (@wonderwhy-er)
2024-11-25 15:29:50 +00:00
- ✅ Cohere Integration (@hasanraiyan)
- ✅ Dynamic model max token length (@hasanraiyan)
2024-11-26 08:47:25 +00:00
- ✅ Better prompt enhancing (@SujalXplores)
- ✅ Prompt caching (@SujalXplores)
2024-12-01 18:41:38 +00:00
- ✅ Load local projects into the app (@wonderwhy-er)
- ✅ Together Integration (@mouimet-infinisoft)
- ✅ Mobile friendly (@qwikode)
2024-12-02 00:02:52 +00:00
- ✅ Better prompt enhancing (@SujalXplores)
- ✅ Attach images to prompts (@atrokhym)
2024-12-15 15:10:46 +00:00
- ✅ Added Git Clone button (@thecodacus)
- ✅ Git Import from url (@thecodacus)
2024-12-15 14:58:15 +00:00
- ✅ PromptLibrary to have different variations of prompts for different use cases (@thecodacus)
- ✅ Detect package.json and commands to auto install & run preview for folder and git import (@wonderwhy-er)
2024-12-14 15:42:05 +00:00
- ✅ Selection tool to target changes visually (@emcconnell)
-**HIGH PRIORITY** - Prevent bolt from rewriting files as often (file locking and diffs)
-**HIGH PRIORITY** - Better prompting for smaller LLMs (code window sometimes doesn't start)
-**HIGH PRIORITY** - Run agents in the backend as opposed to a single model call
2024-10-21 16:13:06 +00:00
- ⬜ Deploy directly to Vercel/Netlify/other similar platforms
- ⬜ Have LLM plan the project in a MD file for better results/transparency
- ⬜ VSCode Integration with git-like confirmations
- ⬜ Upload documents for knowledge - UI design templates, a code base to reference coding style, etc.
- ⬜ Voice prompting
- ⬜ Azure Open AI API Integration
- ⬜ Perplexity Integration
- ⬜ Vertex AI Integration
## bolt.diy Features
2024-10-03 05:07:23 +00:00
2024-12-13 15:16:41 +00:00
- **AI-powered full-stack web development** directly in your browser.
- **Support for multiple LLMs** with an extensible architecture to integrate additional models.
- **Attach images to prompts** for better contextual understanding.
- **Integrated terminal** to view output of LLM-run commands.
- **Revert code to earlier versions** for easier debugging and quicker changes.
- **Download projects as ZIP** for easy portability.
- **Integration-ready Docker support** for a hassle-free setup.
2024-10-03 05:07:23 +00:00
## Setup bolt.diy
2024-10-03 05:07:23 +00:00
2024-12-13 15:16:41 +00:00
If you're new to installing software from GitHub, don't worry! If you encounter any issues, feel free to submit an "issue" using the provided links or improve this documentation by forking the repository, editing the instructions, and submitting a pull request. The following instruction will help you get the stable branch up and running on your local machine in no time.
2024-10-03 05:07:23 +00:00
2024-12-11 17:08:37 +00:00
### Prerequisites
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
1. **Install Git**: [Download Git](https://git-scm.com/downloads)
2. **Install Node.js**: [Download Node.js](https://nodejs.org/en/download/)
2024-12-11 17:08:37 +00:00
- After installation, the Node.js path is usually added to your system automatically. To verify:
- **Windows**: Search for "Edit the system environment variables," click "Environment Variables," and check if `Node.js` is in the `Path` variable.
- **Mac/Linux**: Open a terminal and run:
```bash
echo $PATH
```
Look for `/usr/local/bin` in the output.
2024-12-11 17:08:37 +00:00
### Clone the Repository
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
Clone the repository using Git:
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
```bash
2024-12-13 15:16:41 +00:00
git clone -b stable https://github.com/stackblitz-labs/bolt.diy
2024-12-11 17:08:37 +00:00
```
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
### (Optional) Configure Environment Variables
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
Most environment variables can be configured directly through the settings menu of the application. However, if you need to manually configure them:
2024-12-11 17:08:37 +00:00
1. Rename `.env.example` to `.env.local`.
2. Add your LLM API keys. For example:
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
```env
GROQ_API_KEY=YOUR_GROQ_API_KEY
OPENAI_API_KEY=YOUR_OPENAI_API_KEY
ANTHROPIC_API_KEY=YOUR_ANTHROPIC_API_KEY
```
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
**Note**: Ollama does not require an API key as it runs locally.
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
3. Optionally, set additional configurations:
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
```env
# Debugging
VITE_LOG_LEVEL=debug
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
# Ollama settings (example: 8K context, localhost port 11434)
OLLAMA_API_BASE_URL=http://localhost:11434
DEFAULT_NUM_CTX=8192
```
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
**Important**: Do not commit your `.env.local` file to version control. This file is already included in `.gitignore`.
2024-10-23 06:08:30 +00:00
2024-12-11 17:08:37 +00:00
---
2024-12-11 17:08:37 +00:00
## Run the Application
2024-12-11 17:08:37 +00:00
### Option 1: Without Docker
2024-12-11 17:08:37 +00:00
1. **Install Dependencies**:
```bash
pnpm install
```
If `pnpm` is not installed, install it using:
```bash
sudo npm install -g pnpm
```
2024-12-11 17:08:37 +00:00
2. **Start the Application**:
```bash
pnpm run dev
```
This will start the Remix Vite development server. You will need Google Chrome Canary to run this locally if you use Chrome! It's an easy install and a good browser for web development anyway.
2024-12-11 17:08:37 +00:00
### Option 2: With Docker
2024-12-11 17:08:37 +00:00
#### Prerequisites
- Ensure Git, Node.js, and Docker are installed: [Download Docker](https://www.docker.com/)
2024-12-11 17:08:37 +00:00
#### Steps
2024-12-11 17:08:37 +00:00
1. **Build the Docker Image**:
2024-12-11 17:08:37 +00:00
Use the provided NPM scripts:
```bash
npm run dockerbuild # Development build
npm run dockerbuild:prod # Production build
```
2024-12-11 17:08:37 +00:00
Alternatively, use Docker commands directly:
```bash
docker build . --target bolt-ai-development # Development build
docker build . --target bolt-ai-production # Production build
```
2024-12-11 17:08:37 +00:00
2. **Run the Container**:
Use Docker Compose profiles to manage environments:
```bash
docker-compose --profile development up # Development
docker-compose --profile production up # Production
```
2024-12-11 17:08:37 +00:00
- With the development profile, changes to your code will automatically reflect in the running container (hot reloading).
2024-12-11 17:08:37 +00:00
---
2024-12-11 19:56:41 +00:00
### Update Your Local Version to the Latest
To keep your local version of bolt.diy up to date with the latest changes, follow these steps for your operating system:
2024-12-11 19:56:41 +00:00
#### 1. **Navigate to your project folder**
Navigate to the directory where you cloned the repository and open a terminal:
#### 2. **Fetch the Latest Changes**
Use Git to pull the latest changes from the main repository:
2024-12-11 20:51:39 +00:00
```bash
git pull origin main
```
2024-12-11 19:56:41 +00:00
#### 3. **Update Dependencies**
After pulling the latest changes, update the project dependencies by running the following command:
2024-12-11 20:51:39 +00:00
```bash
pnpm install
```
2024-12-11 19:56:41 +00:00
#### 4. **Run the Application**
Once the updates are complete, you can start the application again with:
```bash
pnpm run dev
```
This ensures that you're running the latest version of bolt.diy and can take advantage of all the newest features and bug fixes.
2024-12-11 19:56:41 +00:00
---
## Available Scripts
- **`pnpm run dev`**: Starts the development server.
- **`pnpm run build`**: Builds the project.
- **`pnpm run start`**: Runs the built application locally using Wrangler Pages.
- **`pnpm run preview`**: Builds and runs the production build locally.
- **`pnpm test`**: Runs the test suite using Vitest.
- **`pnpm run typecheck`**: Runs TypeScript type checking.
- **`pnpm run typegen`**: Generates TypeScript types using Wrangler.
- **`pnpm run deploy`**: Deploys the project to Cloudflare Pages.
- **`pnpm run lint:fix`**: Automatically fixes linting issues.
---
## Contributing
We welcome contributions! Check out our [Contributing Guide](CONTRIBUTING.md) to get started.
2024-11-25 15:29:50 +00:00
---
2024-11-25 15:29:50 +00:00
## Roadmap
2024-11-25 15:40:52 +00:00
Explore upcoming features and priorities on our [Roadmap](https://roadmap.sh/r/ottodev-roadmap-2ovzo).
2024-11-25 15:40:52 +00:00
---
2024-11-25 15:40:52 +00:00
2024-12-01 18:32:29 +00:00
## FAQ
For answers to common questions, visit our [FAQ Page](FAQ.md).