kawre commited on
Commit
ac72309
·
verified ·
1 Parent(s): 13a07fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -3
app.py CHANGED
@@ -322,7 +322,7 @@ with gr.Blocks(title="Chatbot em Cascata - Llama + FLAN + BART") as demo:
322
 
323
  with gr.Column(scale=1):
324
  gr.Markdown("### Informações sobre o Projeto\n"
325
- "Painel feito para descrever as configurações, realizar um teste automático e sobre os envolvidos:")
326
 
327
  model_info_md = f"""
328
  **Modelos usados:**
@@ -363,10 +363,16 @@ with gr.Blocks(title="Chatbot em Cascata - Llama + FLAN + BART") as demo:
363
  btn_test = gr.Button("Run self-test")
364
  btn_test.click(run_self_test, inputs=[system_message, max_tokens, temperature, top_p], outputs=[test_output])
365
 
366
- gr.Markdown("### Disciplina: INTELIGÊNCIA ARTIFICIAL E APRENDIZADO DE MÁQUINA\n"
 
367
  "- Trabalho N2\n"
368
  "- Turma Noturna de Bacharelado em Ciências da Computação 2025.\n"
369
- "- Integrantes: Lucas Antonini - 1722631 |Carlos Eduardo da Silva - 1961011 |Felipe Rios Amaral - 1847080 |Kawrê Britto de Oliveira - 2260931 |Miguel Putini Alfano - 2879347 ")
 
 
 
 
 
370
 
371
  if __name__ == "__main__":
372
  demo.launch()
 
322
 
323
  with gr.Column(scale=1):
324
  gr.Markdown("### Informações sobre o Projeto\n"
325
+ "Painel feito para descrever as **configurações**, **testar a geração** e sobre os **envolvidos**:")
326
 
327
  model_info_md = f"""
328
  **Modelos usados:**
 
363
  btn_test = gr.Button("Run self-test")
364
  btn_test.click(run_self_test, inputs=[system_message, max_tokens, temperature, top_p], outputs=[test_output])
365
 
366
+ gr.Markdown(
367
+ "### Disciplina: INTELIGÊNCIA ARTIFICIAL E APRENDIZADO DE MÁQUINA\n"
368
  "- Trabalho N2\n"
369
  "- Turma Noturna de Bacharelado em Ciências da Computação 2025.\n"
370
+ "- Integrantes:\n "
371
+ "- Lucas Antonini - 1722631\n "
372
+ "- Carlos Eduardo da Silva - 1961011\n "
373
+ "- Felipe Rios Amaral - 1847080 \n"
374
+ "- Kawrê Britto de Oliveira - 2260931\n"
375
+ "- Miguel Putini Alfano - 2879347 ")
376
 
377
  if __name__ == "__main__":
378
  demo.launch()