DHEIVER commited on
Commit
d83ea8f
1 Parent(s): e77d8fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -5
app.py CHANGED
@@ -13,7 +13,7 @@ def gerar(prompt, historico, prompt_sistema, modelo, temperatura=0.9, max_tokens
13
  else:
14
  return "Modelo não reconhecido."
15
 
16
- kwargs_geracao = dict(
17
  temperature=float(temperatura),
18
  max_new_tokens=int(max_tokens_novos),
19
  top_p=float(top_p),
@@ -49,9 +49,19 @@ exemplos=[
49
  # Interface do Chat
50
  gr.ChatInterface(
51
  fn=gerar,
52
- chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
53
- additional_inputs=inputs_adicionais,
54
  title="Medchat | Automação Inteligente de Saúde",
55
  examples=exemplos,
56
- concurrency_limit=20,
57
- ).launch(show_api=False)
 
 
 
 
 
 
 
 
 
 
 
13
  else:
14
  return "Modelo não reconhecido."
15
 
16
+ kwargs_geracao = dict(
17
  temperature=float(temperatura),
18
  max_new_tokens=int(max_tokens_novos),
19
  top_p=float(top_p),
 
49
  # Interface do Chat
50
  gr.ChatInterface(
51
  fn=gerar,
52
+ inputs=inputs_adicionais,
53
+ outputs=gr.Textbox(label="Resposta do Modelo"),
54
  title="Medchat | Automação Inteligente de Saúde",
55
  examples=exemplos,
56
+ layout="vertical",
57
+ enable_queue=True,
58
+ allow_screenshot=True,
59
+ allow_flagging=True,
60
+ flagging_options=["Inapropriado", "Incorreto", "Ofensivo"],
61
+ server_name="0.0.0.0",
62
+ server_port=8080,
63
+ server_name_description="Endereço IP",
64
+ server_port_description="Porta",
65
+ interpretation="markdown",
66
+ keep_history=True,
67
+ ).launch()