uncloseai.

uncloseai.js - Add AI to Any Website

uncloseai.js - Client-Side AI for Everyone

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

This is a web client-only solution that works with static sites, CDNs, GitHub Pages, and any hosting platform that serves HTML. Add AI 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 AI 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 AI.

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 AI 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 AI!

Example prompts to try:

Use Cases

uncloseai.js is perfect for:

Technical Details

uncloseai.js uses:

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