85 lines
4.6 KiB
HTML
85 lines
4.6 KiB
HTML
<h1>JADE: The First Multi-Model Chatbot</h1>
|
|
<p>JADE was built with simplicity in mind. The goal is to have a minimalist chatbot that supports all models without
|
|
unnecessary features like importing files or images. This focus on simplicity allows us to improve how we use AI
|
|
chatbots in other ways.</p>
|
|
|
|
<p>One of my main concerns was the variety of models available, each excelling in different areas. Unfortunately using
|
|
all of them can be impractical and very expensive.</p>
|
|
|
|
<h2>Multi-Models</h2>
|
|
<p>To address this, I created the first Multi-Model chatbot. The idea is to use multiple models within the same
|
|
conversation. Here are the key points:</p>
|
|
<ol>
|
|
<li>When asking a question, you can query multiple models and compare their responses to choose the best one.</li>
|
|
<li>The selected response can be used as the basis for the next message across all models. For example, a response
|
|
from GPT-4 can be used by Claude Haiku in the next interaction.</li>
|
|
</ol>
|
|
|
|
<a class="button is-primary mt-2 mb-2" href="/signin">
|
|
Sign in
|
|
</a>
|
|
|
|
<br><br>
|
|
|
|
<h2>More information</h2>
|
|
<ul>
|
|
<li>
|
|
<h3>Variety of AI models from different providers.<button class="button ml-2 is-small is-primary is-outlined"
|
|
onclick="toggleDetails('all-models-details')">
|
|
<span class="icon is-small">
|
|
<i class="fa-solid fa-info"></i>
|
|
</span>
|
|
</button></h3>
|
|
<p id="all-models-details" style="display:none;">With JADE, you can easily switch between models like GPT 3.5 or
|
|
4o, Gemini, Llama, Mistral, Claude, and more. Even custom endpoint. This means you can choose the best model
|
|
for your specific needs, whether it's for general knowledge, creative writing, or technical expertise.
|
|
Having access to multiple models allows you to take advantage of their unique strengths and weaknesses,
|
|
ensuring you get the most accurate and relevant responses.<br><br></p>
|
|
</li>
|
|
<li>
|
|
<h3>Multiple models in a single conversation.<button class="button ml-2 is-small is-primary is-outlined"
|
|
onclick="toggleDetails('multi-models-details')">
|
|
<span class="icon is-small">
|
|
<i class="fa-solid fa-info"></i>
|
|
</span>
|
|
</button></h3>
|
|
<p id="multi-models-details" style="display:none;">JADE allows you to engage multiple AI models within a single
|
|
conversation. This means you can ask a question and receive responses from several models at once, enabling
|
|
you to compare their answers and choose the most suitable one. This feature is particularly useful for
|
|
complex queries where different models might offer unique insights or solutions. It enhances the overall
|
|
conversational experience by providing a richer and more comprehensive set of responses.<br><br></p>
|
|
</li>
|
|
<li>
|
|
<h3>Reduce Hallucination.<button class="button is-small ml-2 is-primary is-outlined"
|
|
onclick="toggleDetails('reduce-hallucination-details')"><span class="icon is-small">
|
|
<i class="fa-solid fa-info"></i>
|
|
</span>
|
|
</button></h3>
|
|
<p id="reduce-hallucination-details" style="display:none;">AI models sometimes generate information that is
|
|
inaccurate or misleading, a phenomenon known as "hallucination." By using multiple models, JADE reduces each
|
|
model's bias. This ensures that the responses you receive are more reliable and trustworthy.<br><br></p>
|
|
</li>
|
|
<li>
|
|
<h3>Pay only for what you use.<button class="button ml-2 is-small is-primary is-outlined"
|
|
onclick="toggleDetails('flexible-pricing-details')">
|
|
<span class="icon is-small">
|
|
<i class="fa-solid fa-info"></i>
|
|
</span>
|
|
</button></h3>
|
|
<p id="flexible-pricing-details" style="display:none;">JADE offers a flexible pricing model that allows you to
|
|
pay only for the tokens you use. This is particularly beneficial for users who may not need to use the
|
|
chatbot extensively. JADE starts with a free tier that allows you to send up to 200 messages a month. For
|
|
more intensive use, you can upgrade for just $0.95/month.<br><br></p>
|
|
</li>
|
|
</ul>
|
|
|
|
<script>
|
|
function toggleDetails(id) {
|
|
var element = document.getElementById(id);
|
|
if (element.style.display === "none") {
|
|
element.style.display = "block";
|
|
} else {
|
|
element.style.display = "none";
|
|
}
|
|
}
|
|
</script> |