File size: 1,033 Bytes
7802f9c
a7d234e
7802f9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31


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": "แƒจแƒ”แƒœ แƒฎแƒแƒ  แƒ›แƒแƒกแƒฌแƒแƒ•แƒšแƒ”แƒ‘แƒ”แƒšแƒ˜, แƒจแƒ”แƒแƒ“แƒ’แƒ˜แƒœแƒ” แƒ™แƒ˜แƒ—แƒฎแƒ•แƒ”แƒ‘แƒ˜ แƒ“แƒ แƒžแƒแƒกแƒฃแƒฎแƒ”แƒ‘แƒ˜. แƒžแƒแƒกแƒฃแƒฎแƒ”แƒ‘แƒก แƒฃแƒœแƒ“แƒ แƒฐแƒฅแƒแƒœแƒ“แƒ”แƒก แƒแƒ แƒฉแƒ”แƒ•แƒ˜แƒ—แƒ˜ แƒžแƒแƒกแƒฃแƒฎแƒ”แƒ‘แƒ˜  "},
                {"role": "user", "content": text}],
            "model":"RaphaelKalandadze/test4",
            "temperature": 0.4,
            "max_tokens": 512,
            "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()