Chat RNJ

RNJ-1 8B

RNJ-1 conversational model with 8B parameters

8B
Parameters
33K
Context Window
Credit Rate
Starter
Min Tier

Overview

Full description coming soon. This model is available right now via the LLM Resayil API.

Specifications

Display Name RNJ-1 8B
Family RNJ
Category Chat
Parameters 8B
Context Window 32,768 tokens
Quantization FP16
License PROPRIETARY
Min Tier Starter
Status Available

Pricing

credits per token
1K 2,000 Credits
10K 20,000 Credits
100K 200,000 Credits
View Pricing Plans

Code Examples

from openai import OpenAI

client = OpenAI(
    base_url="https://llmapi.resayil.io/v1/",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="rnj-1:8b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)
import anthropic

client = anthropic.Anthropic(
    base_url="https://llmapi.resayil.io/v1",
    api_key="YOUR_API_KEY"
)

message = client.messages.create(
    model="rnj-1:8b",
    max_tokens=1024,
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(message.content[0].text)
const response = await fetch(
    "https://llmapi.resayil.io/v1/chat/completions",
    {
        method: "POST",
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer YOUR_API_KEY"
        },
        body: JSON.stringify({
            model: "rnj-1:8b",
            messages: [
                { role: "user", content: "Hello!" }
            ]
        })
    }
);

const data = await response.json();
console.log(data.choices[0].message.content);
curl https://llmapi.resayil.io/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "rnj-1:8b",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Related Models

Start building with RNJ-1 8B

Get 1,000 free credits when you sign up — no credit card required.