mb-rag 1.1.40__tar.gz → 1.1.41__tar.gz
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-1.1.40 → mb_rag-1.1.41}/PKG-INFO +1 -1
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/chatbot/basic.py +5 -5
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/version.py +1 -1
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag.egg-info/PKG-INFO +1 -1
- {mb_rag-1.1.40 → mb_rag-1.1.41}/README.md +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/__init__.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/chatbot/__init__.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/chatbot/chains.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/chatbot/prompts.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/rag/__init__.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/rag/embeddings.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/utils/__init__.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/utils/bounding_box.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/utils/document_extract.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/utils/extra.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag/utils/pdf_extract.py +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag.egg-info/SOURCES.txt +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag.egg-info/dependency_links.txt +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag.egg-info/requires.txt +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/mb_rag.egg-info/top_level.txt +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/pyproject.toml +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/setup.cfg +0 -0
- {mb_rag-1.1.40 → mb_rag-1.1.41}/setup.py +0 -0
|
@@ -343,11 +343,11 @@ class ModelFactory:
|
|
|
343
343
|
Returns Basic metadata about the LLM
|
|
344
344
|
"""
|
|
345
345
|
print("Model Name: ", self.model)
|
|
346
|
-
print("Model Temperature: ", self.temperature)
|
|
347
|
-
print("Model Max Tokens: ", self.
|
|
348
|
-
print("Model Top P: ", self.top_p)
|
|
349
|
-
print("Model Top K: ", self.top_k)
|
|
350
|
-
print("Model Input Schema:",self.input_schema)
|
|
346
|
+
print("Model Temperature: ", self.model.temperature)
|
|
347
|
+
print("Model Max Tokens: ", self.model.max_tokens)
|
|
348
|
+
print("Model Top P: ", self.model.top_p)
|
|
349
|
+
print("Model Top K: ", self.model.top_k)
|
|
350
|
+
print("Model Input Schema:",self.model.input_schema)
|
|
351
351
|
|
|
352
352
|
class ConversationModel:
|
|
353
353
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|