Upload folder using huggingface_hub
Browse files- app.py +6 -4
- requirements.txt +10 -8
app.py
CHANGED
@@ -596,14 +596,15 @@ with gr.Blocks(
|
|
596 |
examples_per_page= 5,
|
597 |
# theme="soft", # glass
|
598 |
description="Type your question about building automation here.",
|
|
|
599 |
examples=[
|
600 |
-
|
601 |
-
|
602 |
"list the authors on the academic paper associated with the homezero project.",
|
603 |
"What are some good API services that i can use to help fetch relevant data for building automation purposes? include hyperlinks in your response.",
|
604 |
"show the first few rows of each of the uploaded csv files",
|
605 |
-
|
606 |
-
|
607 |
"What are the most common maintenance challenges faced by net-zero energy buildings?",
|
608 |
"How does the Uponor Climate Control Network System contribute to building maintenance?",
|
609 |
"What role do smart systems play in the maintenance of sustainable buildings like HouseZero?",
|
@@ -623,6 +624,7 @@ with gr.Blocks(
|
|
623 |
"what recommendations do you have to mitigate against high relative humidity zone measurements in structures like the housezero building?"
|
624 |
],
|
625 |
fill_height=True,
|
|
|
626 |
)
|
627 |
|
628 |
gr.Markdown("---")
|
|
|
596 |
examples_per_page= 5,
|
597 |
# theme="soft", # glass
|
598 |
description="Type your question about building automation here.",
|
599 |
+
# cache_examples=True,
|
600 |
examples=[
|
601 |
+
# "Give the weather forecast for Cambridge, MA",
|
602 |
+
# "Give me the weather forecast for New York, NY. express the windspeed in miles per hour.",
|
603 |
"list the authors on the academic paper associated with the homezero project.",
|
604 |
"What are some good API services that i can use to help fetch relevant data for building automation purposes? include hyperlinks in your response.",
|
605 |
"show the first few rows of each of the uploaded csv files",
|
606 |
+
# "What are the current maintenance protocols for HouseZero?",
|
607 |
+
# "How do the maintenance protocols for HouseZero compare to industry best practices?",
|
608 |
"What are the most common maintenance challenges faced by net-zero energy buildings?",
|
609 |
"How does the Uponor Climate Control Network System contribute to building maintenance?",
|
610 |
"What role do smart systems play in the maintenance of sustainable buildings like HouseZero?",
|
|
|
624 |
"what recommendations do you have to mitigate against high relative humidity zone measurements in structures like the housezero building?"
|
625 |
],
|
626 |
fill_height=True,
|
627 |
+
cache_examples=True,
|
628 |
)
|
629 |
|
630 |
gr.Markdown("---")
|
requirements.txt
CHANGED
@@ -1,11 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
python-dotenv==1.0.1
|
2 |
-
|
3 |
typing_extensions==4.12.2
|
4 |
-
gradio==5.0.1
|
5 |
-
pandasai==2.2.15
|
6 |
-
gradio_pdf==0.0.16
|
7 |
-
pandas==1.5.3
|
8 |
-
numpy==1.26.4
|
9 |
-
matplotlib==3.9.2
|
10 |
-
requests==2.32.3
|
11 |
tavily-python==0.5.0
|
|
|
1 |
+
gradio==4.44.1
|
2 |
+
gradio-client==1.3.0
|
3 |
+
gradio_pdf==0.0.15
|
4 |
+
matplotlib==3.7.5
|
5 |
+
numpy==1.23.5
|
6 |
+
openai==1.51.0
|
7 |
+
pandas==1.5.3
|
8 |
+
pandasai==2.2.15
|
9 |
+
pyautogen==0.3.0
|
10 |
python-dotenv==1.0.1
|
11 |
+
Requests==2.32.3
|
12 |
typing_extensions==4.12.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
tavily-python==0.5.0
|