modified: index.html
This commit is contained in:
parent
c3ccc092a1
commit
24389e81f5
1 changed files with 20 additions and 19 deletions
39
index.html
39
index.html
|
|
@ -61,6 +61,26 @@
|
|||
|
||||
<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>
|
||||
|
||||
<p><b>Because we don't require a valid API key, we don't have any real need for a server.</b></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>
|
||||
|
||||
<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>
|
||||
|
||||
<br/>
|
||||
<p>This static site has a live LLM demonstration above!</p>
|
||||
|
||||
<h3>Installing the OpenAI Client</h3>
|
||||
<h4>Python</h4>
|
||||
<p>To install the OpenAI package for Python, use <code>pip</code>:</p>
|
||||
|
|
@ -301,25 +321,6 @@ speech.ai.unturf.com {
|
|||
|
||||
<p>We will likely implement a rate limit based on client IP address.</p>
|
||||
|
||||
<h2 id="client-side">Web Client-Only Solution: Interact with AI Services Directly from Static Sites or CDNs</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>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>
|
||||
|
||||
<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>
|
||||
|
||||
<br/>
|
||||
<p>This static site has a live LLM demonstration. Feel free to message us in the box below.</p>
|
||||
|
||||
<h2>Questions & Comments & Discussions</h2>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue