Currently under construction
Sign up for the waitlist to get access to the alpha.
If you've already been invited, use the link sent to your email to sign in.
LLM Inference
JavaScript
Python
Go
HTTP
import OpenAI from "openai";
import { config } from "dotenv";
config();
const openai = new OpenAI({
baseURL: process.env.HELIOS_BASE_URL,
apiKey: process.env.HELIOS_API_KEY,
});
export default openai;
from openai import OpenAI
import os
from dotenv import load_dotenv
load_dotenv()
client = OpenAI(
base_url=os.getenv("HELIOS_BASE_URL"),
api_key=os.getenv("HELIOS_API_KEY")
)
package main
import (
"os"
"github.com/joho/godotenv"
"github.com/sashabaranov/go-openai"
)
func main() {
godotenv.Load()
client := openai.NewClientWithConfig(openai.ClientConfig{
BaseURL: os.Getenv("HELIOS_BASE_URL"),
APIKey: os.Getenv("HELIOS_API_KEY"),
})
}
POST /v1/chat/completions HTTP/1.1
Host: api.helioscloud.ai
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"model": "llama3-70b",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Explain quantum computing."}
],
"temperature": 0.7
}
Waitlist