pablocst commited on
Commit
2a020c3
·
1 Parent(s): 45a9f67

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +68 -14
app.py CHANGED
@@ -1,29 +1,83 @@
1
  import gradio as gr
2
- import os
3
- import json
4
  import requests
 
 
 
5
 
6
  def predict(inputs, top_p, temperature, openai_api_key, chat_counter, chatbot=[], history=[]):
7
- # [Simplificação da lógica da função e adição de tratamento de erros...]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
- def reset_textbox():
10
- return gr.update(value='')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  def setup_ui():
13
- title = "<h1 align='center'>🔥ChatGPT-4 Turbo API 🚀Streaming🚀</h1>"
14
- css = """
15
- #col_container {width: 1000px; margin-left: auto; margin-right: auto;}
16
- #chatbot {height: 520px; overflow: auto;}
17
- .gradio-input { margin-bottom: 10px; }
18
- """
19
- with gr.Blocks(css=css) as demo:
20
- # [Configuração da interface do usuário...]
 
 
 
 
 
 
21
 
22
  return demo
23
 
24
  def main():
25
  demo = setup_ui()
26
- demo.launch(debug=True)
27
 
28
  if __name__ == "__main__":
29
  main()
 
 
1
  import gradio as gr
 
 
2
  import requests
3
+ import json
4
+
5
+ API_URL = "https://api.openai.com/v1/chat/completions"
6
 
7
  def predict(inputs, top_p, temperature, openai_api_key, chat_counter, chatbot=[], history=[]):
8
+ messages = format_messages(chatbot, inputs, chat_counter)
9
+ payload = create_payload(messages, top_p, temperature)
10
+ response = make_request(API_URL, openai_api_key, payload)
11
+ return process_response(response, history)
12
+
13
+ def format_messages(chatbot, inputs, chat_counter):
14
+ messages = []
15
+ if chat_counter != 0:
16
+ for i in range(len(chatbot)):
17
+ user_message = {"role": "user", "content": chatbot[i][0]}
18
+ assistant_message = {"role": "assistant", "content": chatbot[i][1]}
19
+ messages.extend([user_message, assistant_message])
20
+ messages.append({"role": "user", "content": inputs})
21
+ return messages
22
+
23
+ def create_payload(messages, top_p, temperature):
24
+ return {
25
+ "model": "gpt-4-1106-preview",
26
+ "messages": messages,
27
+ "temperature": temperature,
28
+ "top_p": top_p,
29
+ "n": 1,
30
+ "stream": True,
31
+ "presence_penalty": 0,
32
+ "frequency_penalty": 0,
33
+ }
34
 
35
+ def make_request(url, api_key, payload):
36
+ headers = {
37
+ "Content-Type": "application/json",
38
+ "Authorization": f"Bearer {api_key}"
39
+ }
40
+ response = requests.post(url, headers=headers, json=payload, stream=True)
41
+ return response
42
+
43
+ def process_response(response, history):
44
+ token_counter = 0
45
+ partial_words = ""
46
+ for chunk in response.iter_lines():
47
+ if chunk:
48
+ chunk_data = json.loads(chunk[6:])['choices'][0]['delta']
49
+ if 'content' in chunk_data:
50
+ partial_words += chunk_data['content']
51
+ if token_counter == 0:
52
+ history.append(" " + partial_words)
53
+ else:
54
+ history[-1] = partial_words
55
+ token_counter += 1
56
+ chat = [(history[i], history[i + 1]) for i in range(0, len(history) - 1, 2)]
57
+ return chat, history, token_counter
58
 
59
  def setup_ui():
60
+ with gr.Blocks() as demo:
61
+ with gr.Column():
62
+ openai_api_key = gr.Textbox(type='password', label="Insira sua chave de API OpenAI aqui")
63
+ chatbot = gr.Chatbot()
64
+ inputs = gr.Textbox(placeholder="Olá!", label="Digite uma entrada e pressione Enter", lines=3)
65
+ state = gr.State([])
66
+ b1 = gr.Button(value="Executar", variant="primary")
67
+
68
+ top_p = gr.Slider(minimum=0, maximum=1.0, value=1.0, step=0.05, label="Top-p")
69
+ temperature = gr.Slider(minimum=0, maximum=1.0, value=1.0, step=0.05, label="Temperature")
70
+ chat_counter = gr.Number(value=0, visible=False)
71
+
72
+ inputs.submit(predict, [inputs, top_p, temperature, openai_api_key, chat_counter, chatbot, state], [chatbot, state, chat_counter])
73
+ b1.click(predict, [inputs, top_p, temperature, openai_api_key, chat_counter, chatbot, state], [chatbot, state, chat_counter])
74
 
75
  return demo
76
 
77
  def main():
78
  demo = setup_ui()
79
+ demo.launch()
80
 
81
  if __name__ == "__main__":
82
  main()
83
+