Spaces:
Runtime error
Runtime error
Merge pull request #27 from eltociear/patch-1
Browse files- README.md +1 -1
- examples/analyze_dataset.py +1 -1
README.md
CHANGED
|
@@ -40,7 +40,7 @@ async def main():
|
|
| 40 |
"Plot the bitcoin chart of 2023 YTD"
|
| 41 |
)
|
| 42 |
|
| 43 |
-
#
|
| 44 |
print("AI: ", response.content)
|
| 45 |
for file in response.files:
|
| 46 |
file.show_image()
|
|
|
|
| 40 |
"Plot the bitcoin chart of 2023 YTD"
|
| 41 |
)
|
| 42 |
|
| 43 |
+
# output the response (text + image)
|
| 44 |
print("AI: ", response.content)
|
| 45 |
for file in response.files:
|
| 46 |
file.show_image()
|
examples/analyze_dataset.py
CHANGED
|
@@ -15,7 +15,7 @@ async def main():
|
|
| 15 |
user_request, files=files
|
| 16 |
)
|
| 17 |
|
| 18 |
-
#
|
| 19 |
print("AI: ", response.content)
|
| 20 |
for file in response.files:
|
| 21 |
file.show_image()
|
|
|
|
| 15 |
user_request, files=files
|
| 16 |
)
|
| 17 |
|
| 18 |
+
# output the response (text + image)
|
| 19 |
print("AI: ", response.content)
|
| 20 |
for file in response.files:
|
| 21 |
file.show_image()
|