updated default questions
Browse files- Makefile +1 -1
- app.py +4 -2
- requirements-mac.txt +2 -0
Makefile
CHANGED
|
@@ -53,7 +53,7 @@ install:
|
|
| 53 |
pip install -r requirements.txt
|
| 54 |
pip show langchain transformers
|
| 55 |
|
| 56 |
-
install:
|
| 57 |
pip install -r requirements-mac.txt
|
| 58 |
pip show langchain transformers
|
| 59 |
|
|
|
|
| 53 |
pip install -r requirements.txt
|
| 54 |
pip show langchain transformers
|
| 55 |
|
| 56 |
+
install-mac:
|
| 57 |
pip install -r requirements-mac.txt
|
| 58 |
pip show langchain transformers
|
| 59 |
|
app.py
CHANGED
|
@@ -46,8 +46,10 @@ examples = (
|
|
| 46 |
["How to cook a fish?", "Who is the president of US now?"]
|
| 47 |
if chat_with_orca_2
|
| 48 |
else [
|
| 49 |
-
"What's
|
| 50 |
-
"
|
|
|
|
|
|
|
| 51 |
]
|
| 52 |
)
|
| 53 |
description = f"""\
|
|
|
|
| 46 |
["How to cook a fish?", "Who is the president of US now?"]
|
| 47 |
if chat_with_orca_2
|
| 48 |
else [
|
| 49 |
+
"What's Machine Learning?",
|
| 50 |
+
"What's Generative AI?",
|
| 51 |
+
"What's Difference in Differences?",
|
| 52 |
+
"What's Instrumental Variable?",
|
| 53 |
]
|
| 54 |
)
|
| 55 |
description = f"""\
|
requirements-mac.txt
CHANGED
|
@@ -124,4 +124,6 @@ yarl==1.9.4
|
|
| 124 |
einops==0.7.0
|
| 125 |
Pyarrow==15.0.0
|
| 126 |
openpyxl==3.1.2
|
|
|
|
|
|
|
| 127 |
tabulate==0.9.0
|
|
|
|
| 124 |
einops==0.7.0
|
| 125 |
Pyarrow==15.0.0
|
| 126 |
openpyxl==3.1.2
|
| 127 |
+
openpyxl==3.1.2
|
| 128 |
+
text_generation==0.6.1
|
| 129 |
tabulate==0.9.0
|