kolzchut-ragbot 1.7.1__tar.gz → 1.7.2__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.
Files changed (23) hide show
  1. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/PKG-INFO +1 -1
  2. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot/engine.py +1 -1
  3. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot.egg-info/PKG-INFO +1 -1
  4. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/pyproject.toml +1 -1
  5. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/setup.py +1 -1
  6. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/README.md +0 -0
  7. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot/Document.py +0 -0
  8. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot/IntegrateService.py +0 -0
  9. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot/__init__.py +0 -0
  10. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot/config.py +0 -0
  11. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot/get_full_documents_utilities.py +0 -0
  12. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot/llm_client.py +0 -0
  13. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot/model.py +0 -0
  14. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot.egg-info/SOURCES.txt +0 -0
  15. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot.egg-info/dependency_links.txt +0 -0
  16. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot.egg-info/requires.txt +0 -0
  17. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/kolzchut_ragbot.egg-info/top_level.txt +0 -0
  18. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/setup.cfg +0 -0
  19. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/test/test_configs.py +0 -0
  20. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/test/test_docs.py +0 -0
  21. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/test/test_document.py +0 -0
  22. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/test/test_engine.py +0 -0
  23. {kolzchut_ragbot-1.7.1 → kolzchut_ragbot-1.7.2}/test/test_model.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kolzchut-ragbot
3
- Version: 1.7.1
3
+ Version: 1.7.2
4
4
  Summary: A search engine using machine learning models and Elasticsearch for advanced document retrieval.
5
5
  Home-page: https://github.com/shmuelrob/rag-bot
6
6
  Author: Shmuel Robinov
@@ -238,7 +238,7 @@ class Engine:
238
238
  if send_complete_pages_to_llm:
239
239
  top_k_documents = [self.transform_document_to_full_page(doc) for doc in top_k_documents]
240
240
 
241
- top_k_documents_and_additional_document = [*top_k_documents, additional_document]
241
+ top_k_documents_and_additional_document = top_k_documents.copy()
242
242
 
243
243
  if additional_document:
244
244
  top_k_documents_and_additional_document.append(additional_document)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kolzchut-ragbot
3
- Version: 1.7.1
3
+ Version: 1.7.2
4
4
  Summary: A search engine using machine learning models and Elasticsearch for advanced document retrieval.
5
5
  Home-page: https://github.com/shmuelrob/rag-bot
6
6
  Author: Shmuel Robinov
@@ -14,7 +14,7 @@ push = false
14
14
 
15
15
  [tool.poetry]
16
16
  name = "ragbot"
17
- version = "1.7.1"
17
+ version = "1.7.2"
18
18
  description = ""
19
19
  authors = ["Your Name <your.email@example.com>"]
20
20
 
@@ -7,7 +7,7 @@ from setuptools import setup, find_packages
7
7
 
8
8
  setup(
9
9
  name='kolzchut-ragbot',
10
- version='1.7.1',
10
+ version='1.7.2',
11
11
  author='Shmuel Robinov',
12
12
  author_email='shmuel_robinov@webiks.com',
13
13
  description='A search engine using machine learning models and Elasticsearch for advanced document retrieval.',