kolzchut-ragbot 1.3.0__tar.gz → 1.4.0__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 (21) hide show
  1. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/PKG-INFO +3 -3
  2. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot.egg-info/PKG-INFO +3 -3
  3. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/setup.py +3 -2
  4. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/README.md +0 -0
  5. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot/Document.py +0 -0
  6. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot/IntegrateService.py +0 -0
  7. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot/__init__.py +0 -0
  8. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot/config.py +0 -0
  9. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot/engine.py +0 -0
  10. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot/llm_client.py +0 -0
  11. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot/model.py +0 -0
  12. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot.egg-info/SOURCES.txt +0 -0
  13. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot.egg-info/dependency_links.txt +0 -0
  14. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot.egg-info/requires.txt +0 -0
  15. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/kolzchut_ragbot.egg-info/top_level.txt +0 -0
  16. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/pyproject.toml +0 -0
  17. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/setup.cfg +0 -0
  18. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/test/test_configs.py +0 -0
  19. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/test/test_document.py +0 -0
  20. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/test/test_engine.py +0 -0
  21. {kolzchut_ragbot-1.3.0 → kolzchut_ragbot-1.4.0}/test/test_model.py +0 -0
@@ -1,8 +1,8 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: kolzchut-ragbot
3
- Version: 1.3.0
3
+ Version: 1.4.0
4
4
  Summary: A search engine using machine learning models and Elasticsearch for advanced document retrieval.
5
- Home-page: https://github.com/shmuelrob/ragbot
5
+ Home-page: https://github.com/shmuelrob/rag-bot
6
6
  Author: Shmuel Robinov
7
7
  Author-email: shmuel_robinov@webiks.com
8
8
  Classifier: Programming Language :: Python :: 3
@@ -1,8 +1,8 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: kolzchut-ragbot
3
- Version: 1.3.0
3
+ Version: 1.4.0
4
4
  Summary: A search engine using machine learning models and Elasticsearch for advanced document retrieval.
5
- Home-page: https://github.com/shmuelrob/ragbot
5
+ Home-page: https://github.com/shmuelrob/rag-bot
6
6
  Author: Shmuel Robinov
7
7
  Author-email: shmuel_robinov@webiks.com
8
8
  Classifier: Programming Language :: Python :: 3
@@ -1,18 +1,19 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
3
  # to deploy the package to PyPI, run the following command:
4
+ # pip install setuptools wheel twine
4
5
  # python setup.py sdist bdist_wheel
5
6
  # twine upload dist/*
6
7
 
7
8
  setup(
8
9
  name='kolzchut-ragbot',
9
- version='1.3.0',
10
+ version='1.4.0',
10
11
  author='Shmuel Robinov',
11
12
  author_email='shmuel_robinov@webiks.com',
12
13
  description='A search engine using machine learning models and Elasticsearch for advanced document retrieval.',
13
14
  long_description=open('README.md').read(),
14
15
  long_description_content_type='text/markdown',
15
- url='https://github.com/shmuelrob/ragbot',
16
+ url='https://github.com/shmuelrob/rag-bot',
16
17
  packages=find_packages(),
17
18
  install_requires=[
18
19
  'elasticsearch==8.17.1',