fix
This commit is contained in:
parent
b4c79167fa
commit
3081fe048e
@ -138,9 +138,9 @@ func IsCurrentUserLimiteReached(c *fiber.Ctx, isBasic bool) bool {
|
|||||||
}
|
}
|
||||||
// 500 if isBasic is false, otherwise 10000
|
// 500 if isBasic is false, otherwise 10000
|
||||||
if isBasic {
|
if isBasic {
|
||||||
return count >= 10000
|
return count >= 4000
|
||||||
} else {
|
} else {
|
||||||
return count >= 500
|
return count >= 200
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +1,34 @@
|
|||||||
<p>Explain LLM and Conversation</p>
|
<h2>JADE is the first Multi-Models chatbot.</h2>
|
||||||
|
<p>It was build with simplicity in mind. The goal being to have a minimalist chatbot for all models.</p>
|
||||||
|
<p>I don't want fancy stuff like importing files or images. I want the chatbot to be as simple as possible.</p>
|
||||||
|
<p>Following this philosophy, I was able to focus on other way to improve the current way we use AI chatbots.</p>
|
||||||
|
<p>My first complain was that there is a lot of models, and they are all good at different things.</p>
|
||||||
|
<p>But if you want to use all of them, it get impractical and very expensive.</p>
|
||||||
|
|
||||||
|
<h2>Multi-Models</h2>
|
||||||
|
<p>So I decided to focus my chatbot on this and created the first Multi-Models chatbot.</p>
|
||||||
|
<p>The idea is to use multiple models in the same conversation.</p>
|
||||||
|
<p>There is 2 things to understand about this:</p>
|
||||||
|
<p>1. When asking a question, you can ask it to multiple models. You can them compare and pick the best one.</p>
|
||||||
|
<p>2. The next message will use the text of the selected message for all models. So the response from GPT4 can be then
|
||||||
|
use by Claude Haiku for example.</p>
|
||||||
|
|
||||||
|
<h2>Bots</h2>
|
||||||
|
<p>Once an API key enter, you have access to all models from that provider.</p>
|
||||||
|
<p>If you open the Bots menu (next to send), you will find a list of all your Bots. A bot have a name, a model and some
|
||||||
|
parameters.</p>
|
||||||
|
<p>You can create a new bot by clicking on the "+" button. And enter a name and a model. Additionaly, you can add choose
|
||||||
|
a temperature and a system prompt.</p>
|
||||||
|
<p>Once created, you can select it by clicking on it and order it by draging it. You can keep SHIFT pressed and click on
|
||||||
|
2 Bots to select them and all in between.</p>
|
||||||
|
<p>You can also delete selected Bots by clicking on the trash can.</p>
|
||||||
|
|
||||||
|
<h2>Conversation</h2>
|
||||||
|
<p>A conversation is a list of messages. You have a Default conversation that is created when you first sign in.</p>
|
||||||
|
<p>You can create a new conversation by clicking on the "+" button. You can also delete a conversation by clicking on
|
||||||
|
the trash can.</p>
|
||||||
|
<p>You can not delete the Default conversation but you can Archive it.</p>
|
||||||
|
|
||||||
|
<h2>Usage</h2>
|
||||||
|
<p>You can see the usage of your account in the Usage menu. You can see how many messages you have sent and received,
|
||||||
|
and how much the API costed you.</p>
|
@ -17,4 +17,4 @@
|
|||||||
<li>Multi-Models</li>
|
<li>Multi-Models</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>JADE start with a free tier that allow you to use ask 500 messages a month. You can then upgrade for $0.95/month.</p>
|
<p>JADE start with a free tier that allow you to use ask 200 messages a month. You can then upgrade for $0.95/month.</p>
|
Loading…
x
Reference in New Issue
Block a user