mikemin027
commited on
Commit
•
56692f9
1
Parent(s):
70f9643
Added in Ministral info
Browse files
app.py
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
|
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
""
|
7 |
-
|
8 |
|
9 |
|
10 |
def respond(
|
@@ -40,13 +41,10 @@ def respond(
|
|
40 |
yield response
|
41 |
|
42 |
|
43 |
-
"""
|
44 |
-
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
45 |
-
"""
|
46 |
demo = gr.ChatInterface(
|
47 |
respond,
|
48 |
additional_inputs=[
|
49 |
-
gr.Textbox(value="You are a friendly
|
50 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
51 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
52 |
gr.Slider(
|
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
3 |
+
from llama_cpp import Llama
|
4 |
|
5 |
+
llm = Llama.from_pretrained(
|
6 |
+
repo_id="bartowski/Ministral-8B-Instruct-2410-GGUF",
|
7 |
+
filename="Ministral-8B-Instruct-2410-Q4_K_M.gguf",
|
8 |
+
)
|
9 |
|
10 |
|
11 |
def respond(
|
|
|
41 |
yield response
|
42 |
|
43 |
|
|
|
|
|
|
|
44 |
demo = gr.ChatInterface(
|
45 |
respond,
|
46 |
additional_inputs=[
|
47 |
+
gr.Textbox(value="You are a friendly, conversational chatbot who utitilizes relevant information and emojis to build efficient conversations.", label="System message"),
|
48 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
49 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
50 |
gr.Slider(
|