File size: 599 Bytes
71dcbeb
93c1ef4
71dcbeb
93c1ef4
 
 
 
 
 
71dcbeb
 
93c1ef4
 
 
 
 
71dcbeb
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import gradio as gr
import requests

API_URL = "https://api-inference.huggingface.co/models/mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated"
headers = {"Authorization": "Bearer hf_..."}  # Replace with your Hugging Face API token

def query(payload):
    response = requests.post(API_URL, headers=headers, json=payload)
    return response.json()

def generate_text(prompt):
    output = query({
        "inputs": prompt,
        "parameters": {"max_new_tokens": 200}
    })
    return output[0]['generated_text']

iface = gr.Interface(fn=generate_text, inputs="text", outputs="text")
iface.launch()