Llama 3.1 8B Lexi Uncensored V2 Heretic

FeatherlessQuality: 50/100Serving
Try in Playground
✗ Vision✗ Reasoning✗ Tool Use✓ Streaming✓ System Messages

Overview

Llama 3.1 8B Lexi Uncensored V2 Heretic is a efficient model from Featherless with a 33K context window. Available through ANT's unified API.

ANT Routing Intelligence

Limited data

Total Requests

5

Success Rate

100%

P50 Latency

26529ms

P95 Latency

31582ms

Selection Rate

0.1%

of eligible requests

Intelligence Score

46/100

Quick Start

from openai import OpenAI

client = OpenAI(
    base_url="https://api.antbase.ai/v1",
    api_key="YOUR_ANT_API_KEY",
)

response = client.chat.completions.create(
    model="featherless/ChiKoi7/Llama-3.1-8B-Lexi-Uncensored-V2-Heretic",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)