Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -136,7 +136,7 @@ def get_response(prompt: str, *kargs):
|
|
| 136 |
chat = idf_chat.Chat()
|
| 137 |
|
| 138 |
sidebar_text = """
|
| 139 |
-
#
|
| 140 |
|
| 141 |
|
| 142 |
|
|
@@ -145,16 +145,21 @@ Replace `{client}` with a client name. Hint, you can ask IDF to tell you what
|
|
| 145 |
clients are available
|
| 146 |
|
| 147 |
```
|
| 148 |
-
What is the total
|
| 149 |
```
|
| 150 |
|
| 151 |
```
|
| 152 |
-
What is the average
|
| 153 |
```
|
| 154 |
|
| 155 |
```
|
| 156 |
-
What trades did
|
| 157 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 158 |
"""
|
| 159 |
|
| 160 |
with st.sidebar:
|
|
|
|
| 136 |
chat = idf_chat.Chat()
|
| 137 |
|
| 138 |
sidebar_text = """
|
| 139 |
+
# Ask IDF
|
| 140 |
|
| 141 |
|
| 142 |
|
|
|
|
| 145 |
clients are available
|
| 146 |
|
| 147 |
```
|
| 148 |
+
What is the total USD Amount for client {client} for Jan 2022
|
| 149 |
```
|
| 150 |
|
| 151 |
```
|
| 152 |
+
What is the average USD Amount per month for client {client} for 2022
|
| 153 |
```
|
| 154 |
|
| 155 |
```
|
| 156 |
+
What trades did {client} do in May 2022
|
| 157 |
```
|
| 158 |
+
|
| 159 |
+
```
|
| 160 |
+
What is the max and min price for EUR in Mar 2022
|
| 161 |
+
```
|
| 162 |
+
|
| 163 |
"""
|
| 164 |
|
| 165 |
with st.sidebar:
|