File size: 1,039 Bytes
8dfdbda
 
 
 
 
 
 
 
 
 
 
 
 
065dcd1
8dfdbda
 
 
11a66c9
8dfdbda
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import gradio as gr
import requests
import json


url = "https://chat-engine-test.carleadsup.com/api/call/llm"
headers = {'Content-Type': 'application/json'}

def greet(text):
    payload = {
        "body": {
            "token": "jshgduwygdhbwdb1234",
            "messages": [
                {"role": "system", "content": """แƒจแƒ”แƒœ แƒฎแƒแƒ  แƒ›แƒ”แƒ’แƒแƒ‘แƒ แƒฃแƒšแƒ˜ แƒแƒกแƒ˜แƒกแƒขแƒ”แƒœแƒขแƒ˜. แƒ›แƒ˜แƒžแƒแƒกแƒฃแƒฎแƒ” แƒงแƒแƒ•แƒ”แƒšแƒ—แƒ•แƒ˜แƒก แƒ˜แƒกแƒ” แƒ แƒแƒ› แƒ’แƒแƒ›แƒแƒ˜แƒงแƒ”แƒœแƒ แƒ”แƒ›แƒแƒฏแƒ˜แƒ”แƒ‘แƒ˜ (emoji) แƒ“แƒ แƒกแƒ›แƒแƒ˜แƒšแƒ”แƒ‘แƒ˜ (smile) โค๏ธ"""},
                {"role": "user", "content": text}],
            "model":"RaphaelKalandadze/test4",
            "temperature": 0.4,
            "max_tokens": 1024,
            "frequency_penalty": 1.2,
        }
    }
    response = requests.post(url, json=payload, headers=headers)
    loaded = json.loads(response.json()["body"])["resp"]["content"]
    return loaded
    
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()