Text changes

This commit is contained in:
Niek van der Maas 2023-03-03 14:51:40 +01:00
parent c434816f7f
commit 4f8dcc4d4b
2 changed files with 11 additions and 4 deletions

View File

@ -8,7 +8,7 @@ ChatGPT-web is a simple one-page web interface to the OpenAI ChatGPT API. To use
## Why? ## Why?
Why not use the [official ChatGPT interface](https://chat.openai.com/)? Becauce ChatGPT-web will allow more customization, and since it uses the commercial OpenAI API it should be more reliable. It's also *much* cheaper than ChatGPT Pro - at $20 per month, you would need to use *10 million* tokens on the OpenAI API for this to break even. Finally, since ChatGPT-web is open source, so you can host it yourself and make changes as you want. Why not use the [official ChatGPT interface](https://chat.openai.com/)? Becauce ChatGPT-web will allow more customization, and since it uses the commercial OpenAI API it should be more reliable. It's also *much* cheaper than ChatGPT Plus - at $20 per month, you would need to use *10 million* tokens on the OpenAI API for this to break even. Finally, since ChatGPT-web is open source, so you can host it yourself and make changes as you want.
## Development ## Development

View File

@ -18,9 +18,16 @@
target="_blank" target="_blank"
rel="noreferrer">an OpenAI API key</a rel="noreferrer">an OpenAI API key</a
> >
first. All messages are stored in your browser's local storage, so everything first. OpenAI bills per token (usage-based), which means it is a lot cheaper
is <strong>private</strong>. You can also close the browser tab and come than
back later to continue the conversation. <a
href="https://openai.com/blog/chatgpt-plus"
target="_blank"
rel="noreferrer">ChatGPT Plus</a
>, unless you use more than 10 million tokens per month. All messages are
stored in your browser's local storage, so everything is
<strong>private</strong>. You can also close the browser tab and come back
later to continue the conversation.
</div> </div>
</article> </article>
<article class="message {!apiKey ? 'is-danger' : 'is-warning'}"> <article class="message {!apiKey ? 'is-danger' : 'is-warning'}">