simplify uncloseai.js section - focus on button, remove detailed internals

This commit is contained in:
Russell Ballestrini 2025-10-12 14:20:56 -04:00
parent 1a210d48e9
commit 1c5b9ef035

View file

@ -58,13 +58,7 @@
<nav>
<ul>
<li><a href="#introduction" class="active">Introducing uncloseai & Hermes & TTS Speech Endpoints</a></li>
<li><a href="#client-side">Web Client-Only Solution</a>
<ul>
<li><a href="#quick-start">🚀 Quick Start: Install uncloseai.js</a></li>
<li><a href="#installation">✨ One-Line Installation</a></li>
<li><a href="#features">🎯 What You Get</a></li>
</ul>
</li>
<li><a href="#client-side">Try the uncloseai. Button</a></li>
<li><a href="#openai-client">Installing the OpenAI Client</a>
<ul>
<li><a href="#python-client">Python Client Installation</a></li>
@ -92,8 +86,8 @@
<li><a href="#discussions">Questions & Comments & Discussions</a></li>
</ul>
</nav>
<p style="margin-top: 2rem;"><strong>🎮 Looking for examples?</strong><br><a href="https://ai.unturf.com/demo.html">Visit our demo page →</a></p>
<!--<p style="margin-top: 2rem;"><strong>🎮 Looking for examples?</strong><br><a href="https://ai.unturf.com/demo.html">Visit our demo page →</a></p>-->
</div>
</aside>
@ -123,35 +117,13 @@
<p>We intend to be a drop in replacement, you can use the existing open source OpenAI client to communicate with us.</p>
<h2 id="client-side">Web Client-Only Solution: Interact with AI Services Directly from Static Sites or CDNs</h2>
<h2 id="client-side">Try the uncloseai. Button</h2>
<p><b>Because we don't require a valid API key, we don't have any real need for a server.</b></p>
<p>This page includes the <a href="https://uncloseai.com/uncloseai.js" target="_blank">uncloseai.js</a> script which adds a floating "uncloseai." button in the bottom right corner. Click it to interact with Hermes AI directly from your browser.</p>
<p>Add this LLM to any static site or CDN.</p>
<p>This web client-only solution uses <a href="https://uncloseai.com/uncloseai.js" target="_blank">uncloseai.js</a> to make the browser act as a client, directly interacting with the API without needing an intermediary server. By eliminating the need for a valid API key, the API handles requests on behalf of the browser client, making it efficient and accessible thin client, especially those on battery power like phones & laptops.</p>
<h3 id="quick-start">🚀 Quick Start: Install uncloseai.js on any website</h3>
<p>Add AI capabilities to any website with just one line of code. The floating "uncloseai." button appears automatically, providing access to Hermes AI, text-to-speech, translation, and more.</p>
<h3 id="installation">✨ One-Line Installation</h3>
<p>Add this script tag to your HTML - that's it! The floating AI button appears automatically:</p>
<p>Add this script tag to your HTML to get the same floating AI button on your site:</p>
<pre><code class="html">&lt;script src="https://uncloseai.com/uncloseai.js" type="module"&gt;&lt;/script&gt;</code></pre>
<h3 id="features">🎯 What You Get</h3>
<ul>
<li><strong>🤖 Floating AI Assistant</strong> - Always-accessible "uncloseai." button in bottom right</li>
<li><strong>📖 Page-Aware</strong> - Hermes AI understands your page content and provides contextual help</li>
<li><strong>🔊 Text-to-Speech</strong> - Convert any text to speech with multiple voice options</li>
<li><strong>🌐 Translation</strong> - Translate content into 19 languages with formatting preservation</li>
<li><strong>💾 Conversation History</strong> - Persistent chat history stored in browser</li>
<li><strong>🎨 Framework Compatible</strong> - Works with any CSS framework</li>
</ul>
<p><strong>🎮 Live Demo & Complete Documentation:</strong> <a href="https://ai.unturf.com/demo.html" style="font-weight: bold; color: #43a047;">See uncloseai.js in action with 12+ integration examples →</a></p>
<p>The demo page includes configuration options, embedded widgets, custom implementations, direct API usage, and more advanced features.</p>
<h2 id="openai-client">Installing the OpenAI Client</h2>
<h3 id="python-client">Python Client Installation</h3>