rmayormartins commited on
Commit
2b5b693
·
1 Parent(s): 9a3ed0e

Subindo arquivos2

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. requirements.txt +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ async def chat_groq(message, history):
37
  response_content += chunk.choices[0].delta.content
38
  yield response_content
39
 
40
- with gr.Blocks(theme=gr.themes.Monochrome(), fill_height=True) as demo:
41
  gr.ChatInterface(chat_groq,
42
  clear_btn=None,
43
  undo_btn=None,
 
37
  response_content += chunk.choices[0].delta.content
38
  yield response_content
39
 
40
+ with gr.Blocks(theme=gr.themes.Monochrome()) as demo:
41
  gr.ChatInterface(chat_groq,
42
  clear_btn=None,
43
  undo_btn=None,
requirements.txt CHANGED
@@ -1,4 +1,4 @@
1
  groq
2
- gradio
3
  transformers
4
  torch
 
1
  groq
2
+ gradio==4.29.0
3
  transformers
4
  torch