Updated changelog for v1.3
Browse files
app.py
CHANGED
@@ -263,7 +263,7 @@ async def chat(query,history,audience,sources,reports):
|
|
263 |
yield history,docs_html,output_query,output_language,gallery
|
264 |
|
265 |
except Exception as e:
|
266 |
-
raise gr.Error(f"
|
267 |
|
268 |
|
269 |
try:
|
@@ -285,7 +285,7 @@ async def chat(query,history,audience,sources,reports):
|
|
285 |
log_on_azure(file, logs, share_client)
|
286 |
except Exception as e:
|
287 |
print(f"Error logging on Azure Blob Storage: {e}")
|
288 |
-
raise gr.Error(f"ClimateQ&A Error: {str(e)[:100]}
|
289 |
|
290 |
image_dict = {}
|
291 |
for i,doc in enumerate(docs):
|
@@ -746,8 +746,14 @@ Or around 2 to 4 times more than a typical Google search.
|
|
746 |
- Intent routing
|
747 |
- Local environment setup
|
748 |
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
##### v1.2.1 - *2024-01-16*
|
750 |
-
- BUG - corrected asynchronous bug failing the chatbot frequently
|
751 |
|
752 |
##### v1.2.0 - *2023-11-27*
|
753 |
- Added new IPBES assessment on Invasive Species (SPM and chapters)
|
|
|
263 |
yield history,docs_html,output_query,output_language,gallery
|
264 |
|
265 |
except Exception as e:
|
266 |
+
raise gr.Error(f"{e}")
|
267 |
|
268 |
|
269 |
try:
|
|
|
285 |
log_on_azure(file, logs, share_client)
|
286 |
except Exception as e:
|
287 |
print(f"Error logging on Azure Blob Storage: {e}")
|
288 |
+
raise gr.Error(f"ClimateQ&A Error: {str(e)[:100]} - The error has been noted, try another question and if the error remains, you can contact us :)")
|
289 |
|
290 |
image_dict = {}
|
291 |
for i,doc in enumerate(docs):
|
|
|
746 |
- Intent routing
|
747 |
- Local environment setup
|
748 |
|
749 |
+
##### v1.3.0-alpha - *2024-01-31*
|
750 |
+
- Completely redesign chunking system mechanism at the parsing phase (hierarchical aggregations, better control to get 256 tokens)
|
751 |
+
- Switched to Pinecone serverless for performance improvements
|
752 |
+
- Add TOC section for each source in the citations panel as breadcrumbs
|
753 |
+
- *EXPERIMENTAL* - Figure retrieval system within the answer (caption pictures with GPT4 Vision and indexing the caption in the retrieval system)
|
754 |
+
|
755 |
##### v1.2.1 - *2024-01-16*
|
756 |
+
- *BUG* - corrected asynchronous bug failing the chatbot frequently
|
757 |
|
758 |
##### v1.2.0 - *2023-11-27*
|
759 |
- Added new IPBES assessment on Invasive Species (SPM and chapters)
|