Random   •   Archives   •   RSS   •   About   •   Contact

Free Hermes AI ai.unturf.com & uncloseai.js

Hey all I created ai.unturf.com and uncloseai.js over the past two weeks & this post introduces them to make AI more accessible to everyone.

The AI service is powered by the model NousResearch/Hermes-3-Llama-3.1-8B. Our mission is to provide accessible AI tools for everyone, embodying the principles of both free as in beer & free as in freedom. You can interact with our model without any cost, and we encourage to contributions and building upon the open-source code & models.

One of the key features of ai.unturf.com is its compatibility with various programming languages. We provide examples in Python and Node.js, allowing developers to easily integrate our AI service into their applications. Moreover, we offer a web-client only solution using uncloseai.js, which enables static sites or CDNs hosting HTML content to interact with AI services directly from the browser without the need for an intermediary server/client. This approach eliminates the requirement for a valid API key, making it an efficient and accessible option for thin clients often on battery.

To demonstrate the ease of use of our AI service, here is a cURL example:

curl -X POST -H "Content-Type: application/json" -d '{
    "prompt": "Give a Python Fizzbuzz solution in one line of code",
    "model": "NousResearch/Hermes-3-Llama-3.1-8B",
    "temperature": 0.5,
    "max_tokens": 150
}' https://hermes.ai.unturf.com/v1/completions

Also the coolest part is we found that because we don't require a valid API key, a tiny bit of javascript goes a long way to create a web client-only solution which is great for static sites and CDNs.

In this demo architecture, the browser serves as the client, directly interacting with the AI service without the need for an intermediary server/client.

By using uncloseai.js, developers can create thin clients on battery-powered devices, making AI more accessible and efficient.

Here is the HTML we needed to add to _this_ site, to make it work:

<head>
<!-- Highlight.js for syntax highlighting -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.10.0/styles/a11y-dark.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/highlight.min.js"></script>
<script src="https://uncloseai.com/uncloseai.js"></script>
</head>

<div id="chat-container">
  <div id="chat-box"></div>
  <div></div>
</div>
<div>
  <input type="text" id="user-input" placeholder="Ask about this page...">
  <button onclick="handleUserInput()">Send</button>
</div>

I invite you to explore the service for yourself. Consider using it as is or building your own app/client. Let's make AI more accessible and create a world where everyone can benefit from its power.

Before you go, if you want to try it out live on this static site, click here and and ask a question about the post. it knows how to code. : )




Want comments on your site?

Remarkbox — is a free SaaS comment service which embeds into your pages to keep the conversation in the same place as your content. It works everywhere, even static HTML sites like this one!

uncloseai.js example for static sites


Remarks: Free Hermes AI ai.unturf.com & uncloseai.js

© Russell Ballestrini.