Spaces:
Sleeping
Sleeping
freeCS-dot-org
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ from threading import Thread
|
|
8 |
|
9 |
|
10 |
HF_TOKEN = os.environ.get("HF_TOKEN", None)
|
11 |
-
MODEL = "
|
12 |
|
13 |
TITLE = """<h2>Link to the model: <a href="https://huggingface.co/AGI-0/Artificium-llama3.1-8B-001" title="Visit the model repository on Hugging Face">AGI-0/Artificium-llama3.1-8B-001</a> please leave a like to the repository if you liked it. THIS INFERENCE IS 4-Bit Quantized</h2>"""
|
14 |
|
@@ -110,7 +110,7 @@ with gr.Blocks(css=CSS, theme="soft") as demo:
|
|
110 |
minimum=0,
|
111 |
maximum=1,
|
112 |
step=0.1,
|
113 |
-
value=0.
|
114 |
label="Temperature",
|
115 |
render=False,
|
116 |
),
|
@@ -118,7 +118,7 @@ with gr.Blocks(css=CSS, theme="soft") as demo:
|
|
118 |
minimum=128,
|
119 |
maximum=8192,
|
120 |
step=1,
|
121 |
-
value=
|
122 |
label="Max new tokens",
|
123 |
render=False,
|
124 |
),
|
|
|
8 |
|
9 |
|
10 |
HF_TOKEN = os.environ.get("HF_TOKEN", None)
|
11 |
+
MODEL = "AGI-0/Art-v0-3B"
|
12 |
|
13 |
TITLE = """<h2>Link to the model: <a href="https://huggingface.co/AGI-0/Artificium-llama3.1-8B-001" title="Visit the model repository on Hugging Face">AGI-0/Artificium-llama3.1-8B-001</a> please leave a like to the repository if you liked it. THIS INFERENCE IS 4-Bit Quantized</h2>"""
|
14 |
|
|
|
110 |
minimum=0,
|
111 |
maximum=1,
|
112 |
step=0.1,
|
113 |
+
value=0.2,
|
114 |
label="Temperature",
|
115 |
render=False,
|
116 |
),
|
|
|
118 |
minimum=128,
|
119 |
maximum=8192,
|
120 |
step=1,
|
121 |
+
value=4096,
|
122 |
label="Max new tokens",
|
123 |
render=False,
|
124 |
),
|