TogetherAI commited on
Commit
86dfeb5
·
1 Parent(s): 12831ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -14
app.py CHANGED
@@ -83,21 +83,14 @@ additional_inputs=[
83
  )
84
  ]
85
 
86
- customCSS = """
87
- #component-7 { # this is the default element ID of the chat component
88
- height: 800px; # adjust the height as needed
89
- flex-grow: 1;
90
- }
91
- """
92
-
93
- with gr.Blocks(css=css, theme="NoCrypt/[email protected]") as demo: # Theme und CSS hier hinzugefügt
94
- gr.HTML("<h1><center>Chat with (Mistrailex 7B) <h1><center>")
95
- gr.HTML("<h3><center>Einfach.Fragen 💬<h3><center>")
96
- gr.HTML("<h3><center>Learn more about the model <a href='https://huggingface.co/docs/transformers/main/model_doc/mistral'>here</a>. 📚<h3><center>")
97
- gr.ChatInterface(
98
  generate,
99
  additional_inputs=additional_inputs,
100
- examples=[["What is the secret to life?"], ["Write me a recipe for pancakes."]]
101
  )
102
 
103
- demo.queue().launch(debug=True)
 
83
  )
84
  ]
85
 
86
+
87
+
88
+ with gr.Blocks(css=css, theme="NoCrypt/[email protected]") as demo:
89
+ gr.HTML("<h1><center>AI Assistant<h1><center>")
90
+ gr.ChatInterface(
 
 
 
 
 
 
 
91
  generate,
92
  additional_inputs=additional_inputs,
93
+ examples=[["Was ist der Sinn des Lebens?"], ["Schreibe mir ein Rezept über Honigkuchenpferde"]]
94
  )
95
 
96
+ demo.queue(concurrency_count=75, max_size=100).launch(debug=True)