uncloseai.

uncloseai.js - Add Machine Learning to Any Website

uncloseai.js - Client-Side Machine Learning for Everyone

uncloseai.js is a lightweight JavaScript library that adds a floating chat button to any website. With just one line of code, you can integrate Hermes model directly into your site - no server required, no backend needed. Absolutely no API keys to manage!

This is a web client-only solution that works with static sites, CDNs, GitHub Pages, and any hosting platform that serves HTML. Add capabilities to your documentation, blog, portfolio, or any web page instantly.

✨ One-Line Installation

Add this script tag to your HTML to get the same floating machine learning button on your site:

<script src="https://uncloseai.com/uncloseai.js" type="module"></script>

That's it! A floating "uncloseai." button will appear in the bottom right corner of your page.

🎯 Features

📖 Basic Usage

Once you've added the script tag, the floating button appears automatically. Click it to open the chat interface and start conversing with Hermes.

The chat interface includes:

⚙️ Customization

You can customize the behavior and appearance of uncloseai.js by setting global variables before loading the script:

<script>
    // Disable custom styling to use your site's CSS framework (e.g., PicoCSS)
    window.UNCLOSEAI_CUSTOM_STYLING = false;

    // Change the API endpoint (advanced)
    window.UNCLOSEAI_BASE_URL = "https://hermes.ai.unturf.com/v1";

    // Change the model (advanced)
    window.UNCLOSEAI_MODEL = "adamo1139/Hermes-3-Llama-3.1-8B-FP8-Dynamic";
</script>
<script src="https://uncloseai.com/uncloseai.js" type="module"></script>

Available Configuration Options:

Variable Default Description
UNCLOSEAI_CUSTOM_STYLING true Enable/disable built-in styling. Set to false to use your site's CSS framework.
UNCLOSEAI_BASE_URL https://hermes.ai.unturf.com/v1 API endpoint URL for chat completions
UNCLOSEAI_MODEL adamo1139/Hermes-3-Llama-3.1-8B-FP8-Dynamic machine learning model identifier

🎮 Try It Now

This page has uncloseai.js installed. Look for the floating "uncloseai." button in the bottom right corner of your screen and click it to start chatting with Hermes!

Example prompts to try:

Use Cases

uncloseai.js is perfect for:

Technical Details

uncloseai.js uses:

Battery-Powered Devices & Machine Learning

uncloseai.js is a game-changer for battery-powered devices like smartphones, tablets, & laptops, which often when often on-the-go lack enough energy reservations to run large language models locally. By leveraging a client-side JavaScript library, uncloseai.js offloads the heavy processing to backend inference servers powered by community GPUs. This approach eliminates the need for API keys, simplifying integration and removing the burden of securing sensitive credentials on the client side. As a result, resource-constrained devices can seamlessly access powerful capabilities without draining battery life or requiring complex security measures, making uncloseai.js an ideal solution for adding machine learning to websites accessed on mobile and portable devices.

Open Source

uncloseai.js is public domain software - completely free to use, modify, and distribute. No attribution required, though always appreciated!

📦 Source Code: https://git.unturf.com/engineering/unturf/uncloseai.com