Spaces:
Sleeping
Sleeping
Commit
·
86dfeb5
1
Parent(s):
12831ee
Update app.py
Browse files
app.py
CHANGED
@@ -83,21 +83,14 @@ additional_inputs=[
|
|
83 |
)
|
84 |
]
|
85 |
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
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=[["
|
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)
|