tamunaZur commited on
Commit
7802f9c
ยท
verified ยท
1 Parent(s): 4fef8cc

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -0
app.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ```python
3
+ import gradio as gr
4
+
5
+ import requests
6
+ import json
7
+
8
+
9
+ url = "https://chat-engine-test.carleadsup.com/api/call/llm"
10
+ headers = {'Content-Type': 'application/json'}
11
+
12
+ def greet(text):
13
+ payload = {
14
+ "body": {
15
+ "token": "jshgduwygdhbwdb1234",
16
+ "messages": [
17
+ {"role": "system", "content": "แƒจแƒ”แƒœ แƒฎแƒแƒ  แƒ›แƒแƒกแƒฌแƒแƒ•แƒšแƒ”แƒ‘แƒ”แƒšแƒ˜, แƒจแƒ”แƒแƒ“แƒ’แƒ˜แƒœแƒ” แƒ™แƒ˜แƒ—แƒฎแƒ•แƒ”แƒ‘แƒ˜ แƒ“แƒ แƒžแƒแƒกแƒฃแƒฎแƒ”แƒ‘แƒ˜. แƒžแƒแƒกแƒฃแƒฎแƒ”แƒ‘แƒก แƒฃแƒœแƒ“แƒ แƒฐแƒฅแƒแƒœแƒ“แƒ”แƒก แƒแƒ แƒฉแƒ”แƒ•แƒ˜แƒ—แƒ˜ แƒžแƒแƒกแƒฃแƒฎแƒ”แƒ‘แƒ˜ "},
18
+ {"role": "user", "content": text}],
19
+ "model":"RaphaelKalandadze/test4",
20
+ "temperature": 0.4,
21
+ "max_tokens": 512,
22
+ "frequency_penalty": 1.2,
23
+ }
24
+ }
25
+ response = requests.post(url, json=payload, headers=headers)
26
+ loaded = json.loads(response.json()["body"])["resp"]["content"]
27
+ return loaded
28
+
29
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
30
+ demo.launch()
31
+ ```