mb-rag 1.1.12__py3-none-any.whl → 1.1.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mb-rag might be problematic. Click here for more details.
- mb_rag/chatbot/basic.py +4 -2
- mb_rag/version.py +1 -1
- {mb_rag-1.1.12.dist-info → mb_rag-1.1.13.dist-info}/METADATA +1 -1
- {mb_rag-1.1.12.dist-info → mb_rag-1.1.13.dist-info}/RECORD +6 -6
- {mb_rag-1.1.12.dist-info → mb_rag-1.1.13.dist-info}/WHEEL +0 -0
- {mb_rag-1.1.12.dist-info → mb_rag-1.1.13.dist-info}/top_level.txt +0 -0
mb_rag/chatbot/basic.py
CHANGED
|
@@ -264,8 +264,10 @@ class ModelFactory:
|
|
|
264
264
|
print("Continuing without structured output")
|
|
265
265
|
message= HumanMessage(content=prompt_new,)
|
|
266
266
|
response = self.model.invoke([message])
|
|
267
|
-
|
|
268
|
-
|
|
267
|
+
try:
|
|
268
|
+
return response.content
|
|
269
|
+
except Exception:
|
|
270
|
+
return response
|
|
269
271
|
|
|
270
272
|
class ConversationModel:
|
|
271
273
|
"""
|
mb_rag/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
mb_rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
mb_rag/version.py,sha256=
|
|
2
|
+
mb_rag/version.py,sha256=ADdU2A-QIuJ5Dlo6U75iAj6ZRCbWMl8r62U0V7373Hc,207
|
|
3
3
|
mb_rag/chatbot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
mb_rag/chatbot/basic.py,sha256=
|
|
4
|
+
mb_rag/chatbot/basic.py,sha256=avzYnqwmEqTfwms98ocomjNgJxJ9lv-xGbZO55PlJx8,16873
|
|
5
5
|
mb_rag/chatbot/chains.py,sha256=vDbLX5R29sWN1pcFqJ5fyxJEgMCM81JAikunAEvMC9A,7223
|
|
6
6
|
mb_rag/chatbot/prompts.py,sha256=n1PyiLbU-5fkslRv6aVOzt0dDlwya_cEdQ7kRnRhMuY,1749
|
|
7
7
|
mb_rag/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -9,7 +9,7 @@ mb_rag/rag/embeddings.py,sha256=KjBdekFDb5M3dRMco4r3dDMXMsG5dxdzKImuVIipsd0,2709
|
|
|
9
9
|
mb_rag/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
mb_rag/utils/bounding_box.py,sha256=G0hdDam8QmYtD9lfwMeDHGm-TTo6KZg-yK5ESFL9zaM,8366
|
|
11
11
|
mb_rag/utils/extra.py,sha256=spbFrGgdruNyYQ5PzgvpSIa6Nm0rn9bb4qc8W9g582o,2492
|
|
12
|
-
mb_rag-1.1.
|
|
13
|
-
mb_rag-1.1.
|
|
14
|
-
mb_rag-1.1.
|
|
15
|
-
mb_rag-1.1.
|
|
12
|
+
mb_rag-1.1.13.dist-info/METADATA,sha256=5Evo710iPFcejrhkVzAFaJL3RiNqXluzjC5-nqD40j8,234
|
|
13
|
+
mb_rag-1.1.13.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
14
|
+
mb_rag-1.1.13.dist-info/top_level.txt,sha256=FIK1eAa5uYnurgXZquBG-s3PIy-HDTC5yJBW4lTH_pM,7
|
|
15
|
+
mb_rag-1.1.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|