Using the Hermes AI Model
-At ai.unturf.com, we offer a free AI service 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 you are encouraged to contribute and build upon the open-source code & models that we use.
+Introducing Hermes AI and TTS Speech Endpoints
+At ai.unturf.com, we offer free AI services powered by the NousResearch/Hermes-3-Llama-3.1-8B model and a TTS (Text-to-Speech) endpoint. 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 models without any cost, and you are encouraged to contribute and build upon the open-source code & models that we use.
+ +We intend to be a drop in replacement, you can use the existing open source OpenAI client to communicate with us.
Installing the OpenAI Client
Python
@@ -76,8 +77,9 @@Run the following command to install it:
npm install
- Python Example
-Non-Streaming
+Using the Hermes AI Model
+Python Example
+Non-Streaming
# Python Fizzbuzz Example
from openai import OpenAI
@@ -97,7 +99,7 @@ response = client.chat.completions.create(
print(response.choices[0].message.content)
- Streaming
+Streaming
# Streaming response in Python
from openai import OpenAI
@@ -189,7 +191,52 @@ async function streamResponse() {
streamResponse();
- How we run inference if you wanted to try to contribute
+Using the Text To Speech Endpoint
+Python Example
+# TTS Speech Example in Python
+import openai
+
+client = openai.OpenAI(
+ api_key = "YOLO",
+ base_url = "https://speech.ai.unturf.com/v1",
+)
+
+with client.audio.speech.with_streaming_response.create(
+ model="tts-1",
+ voice="alloy",
+ input="I think so therefore, Today is a wonderful day to build something people love!"
+) as response:
+ response.stream_to_file("speech.mp3")
+
+
+ Node.js Example
+const OpenAI = require('openai');
+
+const client = new OpenAI({
+ baseURL: "https://speech.ai.unturf.com/v1",
+ apiKey: "YOLO",
+});
+
+async function getSpeech() {
+ try {
+ const response = await client.audio.speech.with_streaming_response.create({
+ model: "tts-1",
+ voice: "alloy",
+ input: "I think so therefore, Today is a wonderful day to build something people love!"
+ });
+
+ response.stream_to_file("speech.mp3");
+ } catch (error) {
+ console.error("Error:", error.response ? error.response.data : error.message);
+ }
+}
+
+getSpeech();
+
+
+ How we run inference
+ +This section is optional. This is only if you wanted to try to contribute idle GPU time to the project or if you wanted to reproduce everything in your own cluster.
We use vLLM to run models, currently full f16 safetensors. We make sure to use a virtualenv to hold the dependencies.
We are considering supporting ollama for better quant support.
@@ -202,7 +249,9 @@ pip install vllm python -m vllm.entrypoints.openai.api_server --model NousResearch/Hermes-3-Llama-3.1-8B --host 0.0.0.0 --port 18888 --max-model-len 16000 -If you want to see how we setup the proxy, check out /etc/caddy/Caddyfile
+The Speech endpoint or TTS uses openedai-speech running via Docker. + +
If you want to see how we setup the proxy, check out /etc/caddy/Caddyfile
@@ -233,17 +282,30 @@ hermes.ai.unturf.com {
}
}
-
+speech.ai.unturf.com {
+ reverse_proxy We will likely implement a rate limit based on client IP address.
Web Client-Only Solution: Interact with AI Services Directly from Static Sites or CDNs
-Because we don't require a valid API key, we don't have any real need for a server.
+Because we don't require a valid API key, we don't have any real need for a server.
Add this LLM to any static site or CDN.
-This web client-only solution uses uncloseai.js 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.
+This web client-only solution uses uncloseai.js 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.
-
This static site has a live LLM demostation. Feel free to message us in the box below.
++
This static site has a live LLM demonstration. Feel free to message us in the box below.