Update app.py
Browse files
app.py
CHANGED
@@ -4,16 +4,6 @@ from urllib.request import urlopen
|
|
4 |
import json
|
5 |
import time
|
6 |
from load_llms import model_choices, llm_intro, load_model
|
7 |
-
from huggingface_hub import HfApi
|
8 |
-
|
9 |
-
|
10 |
-
repo_id = "yxmauw/chatbot"
|
11 |
-
api = HfApi()
|
12 |
-
runtime = api.get_space_runtime(repo_id=repo_id)
|
13 |
-
# space_hardware = runtime.hardware
|
14 |
-
# first_string = space_hardware.split("-")[0].upper()
|
15 |
-
# second_string = space_hardware.split("-")[1]
|
16 |
-
# space_hardware = " ".join([first_string, second_string])
|
17 |
|
18 |
|
19 |
# Construct chatbot
|
@@ -48,7 +38,7 @@ with gr.Blocks(
|
|
48 |
# Link the dropdown with the textbox to update the description based on the selected model
|
49 |
model_dropdown.change(fn=llm_intro, inputs=model_dropdown, outputs=explanation)
|
50 |
|
51 |
-
gr.Textbox(value=f"{
|
52 |
|
53 |
|
54 |
with gr.Column(scale=4, elem_id='col'):
|
|
|
4 |
import json
|
5 |
import time
|
6 |
from load_llms import model_choices, llm_intro, load_model
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
|
9 |
# Construct chatbot
|
|
|
38 |
# Link the dropdown with the textbox to update the description based on the selected model
|
39 |
model_dropdown.change(fn=llm_intro, inputs=model_dropdown, outputs=explanation)
|
40 |
|
41 |
+
gr.Textbox(value=f"{space_hardware}\n2 vCPU • 16 GB RAM \nFree tier", label="Space Hardware use")
|
42 |
|
43 |
|
44 |
with gr.Column(scale=4, elem_id='col'):
|