mb-rag 1.1.59__tar.gz → 1.1.61__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.
- {mb_rag-1.1.59 → mb_rag-1.1.61}/PKG-INFO +1 -1
- {mb_rag-1.1.59 → mb_rag-1.1.61}/README.md +3 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/basic.py +1 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/version.py +1 -1
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag.egg-info/PKG-INFO +1 -1
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/__init__.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/chatbot/__init__.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/chatbot/chains.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/chatbot/conversation.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/chatbot/prompts.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/rag/__init__.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/rag/embeddings.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/utils/__init__.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/utils/all_data_extract.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/utils/bounding_box.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/utils/document_extract.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/utils/extra.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag/utils/pdf_extract.py +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag.egg-info/SOURCES.txt +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag.egg-info/dependency_links.txt +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag.egg-info/requires.txt +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/mb_rag.egg-info/top_level.txt +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/pyproject.toml +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/setup.cfg +0 -0
- {mb_rag-1.1.59 → mb_rag-1.1.61}/setup.py +0 -0
|
@@ -73,6 +73,9 @@ ollama_model = ModelFactory(
|
|
|
73
73
|
)
|
|
74
74
|
response = ollama_model.invoke_query("What is the meaning of life?")
|
|
75
75
|
|
|
76
|
+
## Running in threads
|
|
77
|
+
response = model.invoke_query_threads(query_list=['q1','q2'],input_data=[[images_data],[images_data]],n_workers=4)
|
|
78
|
+
|
|
76
79
|
|
|
77
80
|
## check example_conversation.ipynb for more details
|
|
78
81
|
|
|
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
|
|
File without changes
|