euriai 0.3.8__tar.gz → 0.3.9__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: euriai
3
- Version: 0.3.8
3
+ Version: 0.3.9
4
4
  Summary: Python client for EURI LLM API (euron.one) with CLI, LangChain, and LlamaIndex integration
5
5
  Author: euron.one
6
6
  Author-email: sudhanshu@euron.one
@@ -13,7 +13,7 @@ Requires-Python: >=3.6
13
13
  Description-Content-Type: text/markdown
14
14
  Requires-Dist: requests
15
15
  Requires-Dist: langchain-core
16
- Requires-Dist: llama-index
16
+ Requires-Dist: llama-index<0.11.0,>=0.10.0
17
17
  Requires-Dist: numpy
18
18
  Dynamic: author
19
19
  Dynamic: author-email
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: euriai
3
- Version: 0.3.8
3
+ Version: 0.3.9
4
4
  Summary: Python client for EURI LLM API (euron.one) with CLI, LangChain, and LlamaIndex integration
5
5
  Author: euron.one
6
6
  Author-email: sudhanshu@euron.one
@@ -13,7 +13,7 @@ Requires-Python: >=3.6
13
13
  Description-Content-Type: text/markdown
14
14
  Requires-Dist: requests
15
15
  Requires-Dist: langchain-core
16
- Requires-Dist: llama-index
16
+ Requires-Dist: llama-index<0.11.0,>=0.10.0
17
17
  Requires-Dist: numpy
18
18
  Dynamic: author
19
19
  Dynamic: author-email
@@ -1,4 +1,4 @@
1
1
  requests
2
2
  langchain-core
3
- llama-index
3
+ llama-index<0.11.0,>=0.10.0
4
4
  numpy
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="euriai",
5
- version="0.3.8",
5
+ version="0.3.9",
6
6
  description="Python client for EURI LLM API (euron.one) with CLI, LangChain, and LlamaIndex integration",
7
7
  long_description=open("README.md", encoding="utf-8").read(),
8
8
  long_description_content_type="text/markdown",
@@ -10,11 +10,12 @@ setup(
10
10
  author_email="sudhanshu@euron.one",
11
11
  packages=find_packages(),
12
12
  install_requires=[
13
- "requests",
14
- "langchain-core",
15
- "llama-index",
16
- "numpy"
17
- ],
13
+ "requests",
14
+ "langchain-core",
15
+ "llama-index>=0.10.0,<0.11.0",
16
+ "numpy"
17
+ ]
18
+ ,
18
19
  python_requires=">=3.6",
19
20
  entry_points={
20
21
  "console_scripts": [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes