langchain-hybit 0.0.1__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.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: langchain-hybit
3
+ Version: 0.0.1
4
+ Summary: Official Python SDK for the HyBit Vector Database
5
+ Author: HyBit Technologies
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Operating System :: OS Independent
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+ Dynamic: author
11
+ Dynamic: classifier
12
+ Dynamic: description
13
+ Dynamic: description-content-type
14
+ Dynamic: requires-python
15
+ Dynamic: summary
16
+
17
+ # langchain-hybit
18
+
19
+ Official Python SDK for the HyBit Vector Database.
@@ -0,0 +1,3 @@
1
+ # langchain-hybit
2
+
3
+ Official Python SDK for the HyBit Vector Database.
@@ -0,0 +1,2 @@
1
+ # Placeholder for HyBit SDK
2
+ __version__ = '0.0.1'
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: langchain-hybit
3
+ Version: 0.0.1
4
+ Summary: Official Python SDK for the HyBit Vector Database
5
+ Author: HyBit Technologies
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Operating System :: OS Independent
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+ Dynamic: author
11
+ Dynamic: classifier
12
+ Dynamic: description
13
+ Dynamic: description-content-type
14
+ Dynamic: requires-python
15
+ Dynamic: summary
16
+
17
+ # langchain-hybit
18
+
19
+ Official Python SDK for the HyBit Vector Database.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ langchain_hybit/__init__.py
4
+ langchain_hybit.egg-info/PKG-INFO
5
+ langchain_hybit.egg-info/SOURCES.txt
6
+ langchain_hybit.egg-info/dependency_links.txt
7
+ langchain_hybit.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ langchain_hybit
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='langchain-hybit',
5
+ version='0.0.1',
6
+ description='Official Python SDK for the HyBit Vector Database',
7
+ long_description=open('README.md').read(),
8
+ long_description_content_type='text/markdown',
9
+ author='HyBit Technologies',
10
+ packages=find_packages(),
11
+ classifiers=[
12
+ 'Programming Language :: Python :: 3',
13
+ 'Operating System :: OS Independent',
14
+ ],
15
+ python_requires='>=3.7',
16
+ )