Fix API keys URL
This commit is contained in:
parent
cc6cae4b8e
commit
93b997d620
|
@ -10,7 +10,7 @@
|
||||||
<div class="message-body">
|
<div class="message-body">
|
||||||
<strong><a href="https://github.com/Niek/chatgpt-web">ChatGPT-web</a></strong>
|
<strong><a href="https://github.com/Niek/chatgpt-web">ChatGPT-web</a></strong>
|
||||||
is a simple one-page web interface to the OpenAI ChatGPT API. To use it, you need to register for
|
is a simple one-page web interface to the OpenAI ChatGPT API. To use it, you need to register for
|
||||||
<a href="https://platform.openai.com/account/api-key" target="_blank" rel="noreferrer">an OpenAI API key</a>
|
<a href="https://platform.openai.com/account/api-keys" target="_blank" rel="noreferrer">an OpenAI API key</a>
|
||||||
first. OpenAI bills per token (usage-based), which means it is a lot cheaper than
|
first. OpenAI bills per token (usage-based), which means it is a lot cheaper than
|
||||||
<a href="https://openai.com/blog/chatgpt-plus" target="_blank" rel="noreferrer">ChatGPT Plus</a>, unless you use
|
<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
|
more than 10 million tokens per month. All messages are stored in your browser's local storage, so everything is
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
{#if !apiKey}
|
{#if !apiKey}
|
||||||
<p class="help is-danger">
|
<p class="help is-danger">
|
||||||
Please enter your <a href="https://platform.openai.com/account/api-key">OpenAI API key</a> above to use ChatGPT-web.
|
Please enter your <a href="https://platform.openai.com/account/api-keys">OpenAI API key</a> above to use ChatGPT-web.
|
||||||
It is required to use ChatGPT-web.
|
It is required to use ChatGPT-web.
|
||||||
</p>
|
</p>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
Loading…
Reference in New Issue