Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
604ab87
feat: add custom unique filename when doanload as zip
lassecapel Nov 17, 2024
399affd
update comment to reflect the the codeline
lassecapel Nov 17, 2024
8978ed0
use a descriptive anique filename when downloading the files to zip
lassecapel Nov 20, 2024
913656e
BugFix: Terminal render too many times causing performance freeze
hgosansn Nov 23, 2024
43839b1
[fix]: artifact actionlist rendering in chat
PuneetP16 Nov 26, 2024
394d143
feat: prompt caching
SujalXplores Nov 26, 2024
62bdbc4
chore(doc): add prompt caching to README
SujalXplores Nov 26, 2024
b471273
feat: search chats
Nov 27, 2024
66901c0
reduced the attack surface
dustinwloring1988 Nov 29, 2024
bcf4dd8
split up the README file
dustinwloring1988 Nov 29, 2024
eeb94c6
Merge pull request #29 from hgosansn/main
dustinwloring1988 Nov 29, 2024
61c2a8b
fix
dustinwloring1988 Nov 29, 2024
60a83ef
Merge pull request #31 from SujalXplores/feat/search-chats
dustinwloring1988 Nov 29, 2024
0ef8e19
Merge pull request #30 from oTToDev-CE/ollama-model-not-respected
dustinwloring1988 Nov 29, 2024
a4843dc
Merge pull request #33 from PuneetP16/fix-artifact-code-block-rendering
dustinwloring1988 Nov 29, 2024
4b6d56a
Merge pull request #32 from SujalXplores/feat/prompt-caching
dustinwloring1988 Nov 29, 2024
6d06cf0
update prompt
dustinwloring1988 Nov 29, 2024
9f9e871
update call tp tpDataStrem from toAIStream
dustinwloring1988 Nov 29, 2024
588c049
Merge pull request #36 from oTToDev-CE/Docker-Attack-Surface
dustinwloring1988 Nov 29, 2024
6cd1587
Merge branch 'dev' into readme-split
dustinwloring1988 Nov 29, 2024
ab23c86
Merge pull request #50 from SujalXplores/feat/prompt-caching
dustinwloring1988 Nov 29, 2024
bf680e1
Merge pull request #49 from oTToDev-CE/Docker-Attack-Surface
dustinwloring1988 Nov 29, 2024
f1a4554
Merge pull request #52 from lassecapel/feat-add-custom-project-name
dustinwloring1988 Nov 29, 2024
b9eb739
Merge pull request #51 from SujalXplores/feat/search-chats
dustinwloring1988 Nov 29, 2024
ec210b9
Merge pull request #47 from oTToDev-CE/ollama-model-not-respected
dustinwloring1988 Nov 29, 2024
a3c24ba
Merge branch 'dev' into readme-split
dustinwloring1988 Nov 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Adding-LLMs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[![Bolt.new: AI-Powered Full-Stack Web Development in the Browser](./public/social_preview_index.jpg)](https://bolt.new)

# Bolt.new Fork by Cole Medin - oTToDev

This fork of Bolt.new (oTToDev) 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.

## Adding New LLMs:

To make new LLMs available to use in this version of Bolt.new, head on over to `app/utils/constants.ts` and find the constant MODEL_LIST. Each element in this array is an object that has the model ID for the name (get this from the provider's API documentation), a label for the frontend model dropdown, and the provider.

By default, Anthropic, OpenAI, Groq, and Ollama are implemented as providers, but the YouTube video for this repo covers how to extend this to work with more providers if you wish!

When you add a new model to the MODEL_LIST array, it will immediately be available to use when you run the app locally or reload it. For Ollama models, make sure you have the model installed already before trying to use it here!
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Contributing to oTToDev
[![Bolt.new: AI-Powered Full-Stack Web Development in the Browser](./public/social_preview_index.jpg)](https://bolt.new)

# Bolt.new Fork by Cole Medin - oTToDev

## Contributing to oTToDev

First off, thank you for considering contributing to oTToDev! This fork aims to expand the capabilities of the original project by integrating multiple LLM providers and enhancing functionality. Every contribution helps make oTToDev a better tool for developers worldwide.

Expand Down
49 changes: 49 additions & 0 deletions Docker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[![Bolt.new: AI-Powered Full-Stack Web Development in the Browser](./public/social_preview_index.jpg)](https://bolt.new)

# Bolt.new Fork by Cole Medin - oTToDev

## Run with Docker

Prerequisites:

Git and Node.js as mentioned in our [README](README.md), as well as Docker: https://www.docker.com/

### 1a. Using Helper Scripts

NPM scripts are provided for convenient building:

```bash
# Development build
npm run dockerbuild

# Production build
npm run dockerbuild:prod
```

### 1b. Direct Docker Build Commands (alternative to using NPM scripts)

You can use Docker's target feature to specify the build environment instead of using NPM scripts if you wish:

```bash
# Development build
docker build . --target bolt-ai-development

# Production build
docker build . --target bolt-ai-production
```

### 2. Docker Compose with Profiles to Run the Container

Use Docker Compose profiles to manage different environments:

```bash
# Development environment
docker-compose --profile development up

# Production environment
docker-compose --profile production up
```

When you run the Docker Compose command with the development profile, any changes you
make on your machine to the code will automatically be reflected in the site running
on the container (i.e. hot reloading still applies!).
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE=node:20.18.0
ARG BASE=node:20.18.1-bookworm-slim
FROM ${BASE} AS base

WORKDIR /app
Expand Down
42 changes: 42 additions & 0 deletions FAQ.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[![Bolt.new: AI-Powered Full-Stack Web Development in the Browser](./public/social_preview_index.jpg)](https://bolt.new)

# Bolt.new Fork by Cole Medin - oTToDev

## FAQ

### Do you plan on merging oTToDev back into the official Bolt.new repo?

More news coming on this coming early next month - stay tuned!

### What are the future plans for oTToDev?

[Check out our Roadmap here!](https://roadmap.sh/r/ottodev-roadmap-2ovzo)

Lot more updates to this roadmap coming soon!

### Why are there so many open issues/pull requests?

oTToDev was started simply to showcase how to edit an open source project and to do something cool with local LLMs on my (@ColeMedin) YouTube channel! However, it quickly
grew into a massive community project that I am working hard to keep up with the demand of by forming a team of maintainers and getting as many people involved as I can.
That effort is going well and all of our maintainers are ABSOLUTE rockstars, but it still takes time to organize everything so we can efficiently get through all
the issues and PRs. But rest assured, we are working hard and even working on some partnerships behind the scenes to really help this project take off!

### How do local LLMs fair compared to larger models like Claude 3.5 Sonnet for oTToDev/Bolt.new?

As much as the gap is quickly closing between open source and massive close source models, you’re still going to get the best results with the very large models like GPT-4o, Claude 3.5 Sonnet, and DeepSeek Coder V2 236b. This is one of the big tasks we have at hand - figuring out how to prompt better, use agents, and improve the platform as a whole to make it work better for even the smaller local LLMs!

### I'm getting the error: "There was an error processing this request"

If you see this error within oTToDev, that is just the application telling you there is a problem at a high level, and this could mean a number of different things. To find the actual error, please check BOTH the terminal where you started the application (with Docker or pnpm) and the developer console in the browser. For most browsers, you can access the developer console by pressing F12 or right clicking anywhere in the browser and selecting “Inspect”. Then go to the “console” tab in the top right.

### I'm getting the error: "x-api-key header missing"

We have seen this error a couple times and for some reason just restarting the Docker container has fixed it. This seems to be Ollama specific. Another thing to try is try to run oTToDev with Docker or pnpm, whichever you didn’t run first. We are still on the hunt for why this happens once and a while!

### I'm getting a blank preview when oTToDev runs my app!

We promise you that we are constantly testing new PRs coming into oTToDev and the preview is core functionality, so the application is not broken! When you get a blank preview or don’t get a preview, this is generally because the LLM hallucinated bad code or incorrect commands. We are working on making this more transparent so it is obvious. Sometimes the error will appear in developer console too so check that as well.

### Everything works but the results are bad

This goes to the point above about how local LLMs are getting very powerful but you still are going to see better (sometimes much better) results with the largest LLMs like GPT-4o, Claude 3.5 Sonnet, and DeepSeek Coder V2 236b. If you are using smaller LLMs like Qwen-2.5-Coder, consider it more experimental and educational at this point. It can build smaller applications really well, which is super impressive for a local LLM, but for larger scale applications you want to use the larger LLMs still!
Loading
Loading