iDrops commited on
Commit
758426c
·
verified ·
1 Parent(s): 634bccd

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +47 -0
app.py ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from huggingface_hub import InferenceClient
3
+
4
+ client = InferenceClient(
5
+ "meta-llama/Meta-Llama-3-8B-Instruct",
6
+ )
7
+
8
+ def chat_mem(message,chat_history):
9
+
10
+ print(len(chat_history))
11
+ chat_history_role = [{"role": "system", "content": "You are a helpful assistant." },]
12
+ if chat_history != []:
13
+ for i in range(len(chat_history)):
14
+ chat_history_role.append({"role": "user", "content": chat_history[i][0]})
15
+ chat_history_role.append({"role": "assistant", "content": chat_history[i][1]})
16
+ chat_history_role.append({"role": "user", "content": message})
17
+
18
+
19
+ chat_completion = client.chat_completion(
20
+ messages=chat_history_role,
21
+ max_tokens=500,
22
+ # stream=True
23
+ )
24
+ chat_history_role.append({"role": "assistant", "content": chat_completion.choices[0].message.content})
25
+ print(chat_history_role)
26
+
27
+ modified = map(lambda x: x["content"], chat_history_role)
28
+ a = list(modified)
29
+ chat_history=[(a[i*2+1], a[i*2+2]) for i in range(len(a)//2)]
30
+
31
+ return "", chat_history
32
+
33
+
34
+ with gr.Blocks() as demo:
35
+ with gr.Row():
36
+ with gr.Column():
37
+ chatbot = gr.Chatbot()
38
+ msg = gr.Textbox(interactive=True, )
39
+ with gr.Row():
40
+ clear = gr.ClearButton([msg, chatbot], icon="https://img.icons8.com/?size=100&id=Xnx8cxDef16O&format=png&color=000000")
41
+ send_btn = gr.Button("Send", variant='primary', icon="https://img.icons8.com/?size=100&id=g8ltXTwIfJ1n&format=png&color=000000")
42
+ msg.submit(fn=chat_mem, inputs=[msg, chatbot], outputs=[msg, chatbot])
43
+ send_btn.click(fn=chat_mem, inputs=[msg, chatbot], outputs=[msg, chatbot])
44
+
45
+
46
+ if __name__ == "__main__":
47
+ demo.launch()