euriai 0.2.1__tar.gz → 0.3.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: euriai
3
- Version: 0.2.1
3
+ Version: 0.3.0
4
4
  Summary: Python client for EURI LLM API (euron.one) with CLI and interactive wizard
5
5
  Author: euron.one
6
6
  Author-email: sudhanshu@euron.one
@@ -8,11 +8,11 @@ License: MIT
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Operating System :: OS Independent
10
10
  Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Development Status :: 4 - Beta
12
11
  Classifier: Intended Audience :: Developers
13
12
  Requires-Python: >=3.6
14
13
  Description-Content-Type: text/markdown
15
14
  Requires-Dist: requests
15
+ Requires-Dist: langchain-core
16
16
 
17
17
  # euriai 🧠
18
18
 
@@ -59,3 +59,18 @@ euriai --api_key YOUR_API_KEY --prompt "Stream a fun fact" --stream
59
59
 
60
60
  euriai --models
61
61
 
62
+ ## 🤖 LangChain Integration
63
+
64
+ Use Euriai with LangChain directly:
65
+
66
+ ```python
67
+ from euriai import EuriaiLangChainLLM
68
+
69
+ llm = EuriaiLangChainLLM(
70
+ api_key="your_api_key",
71
+ model="gpt-4.1-nano",
72
+ temperature=0.7,
73
+ max_tokens=300
74
+ )
75
+
76
+ print(llm.invoke("Write a poem about time travel."))
@@ -43,3 +43,18 @@ euriai --api_key YOUR_API_KEY --prompt "Stream a fun fact" --stream
43
43
 
44
44
  euriai --models
45
45
 
46
+ ## 🤖 LangChain Integration
47
+
48
+ Use Euriai with LangChain directly:
49
+
50
+ ```python
51
+ from euriai import EuriaiLangChainLLM
52
+
53
+ llm = EuriaiLangChainLLM(
54
+ api_key="your_api_key",
55
+ model="gpt-4.1-nano",
56
+ temperature=0.7,
57
+ max_tokens=300
58
+ )
59
+
60
+ print(llm.invoke("Write a poem about time travel."))
@@ -0,0 +1,4 @@
1
+ from .client import EuriaiClient
2
+ from .langchain_llm import EuriaiLangChainLLM
3
+
4
+ __all__ = ["EuriaiClient", "EuriaiLangChainLLM"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: euriai
3
- Version: 0.2.1
3
+ Version: 0.3.0
4
4
  Summary: Python client for EURI LLM API (euron.one) with CLI and interactive wizard
5
5
  Author: euron.one
6
6
  Author-email: sudhanshu@euron.one
@@ -8,11 +8,11 @@ License: MIT
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Operating System :: OS Independent
10
10
  Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Development Status :: 4 - Beta
12
11
  Classifier: Intended Audience :: Developers
13
12
  Requires-Python: >=3.6
14
13
  Description-Content-Type: text/markdown
15
14
  Requires-Dist: requests
15
+ Requires-Dist: langchain-core
16
16
 
17
17
  # euriai 🧠
18
18
 
@@ -59,3 +59,18 @@ euriai --api_key YOUR_API_KEY --prompt "Stream a fun fact" --stream
59
59
 
60
60
  euriai --models
61
61
 
62
+ ## 🤖 LangChain Integration
63
+
64
+ Use Euriai with LangChain directly:
65
+
66
+ ```python
67
+ from euriai import EuriaiLangChainLLM
68
+
69
+ llm = EuriaiLangChainLLM(
70
+ api_key="your_api_key",
71
+ model="gpt-4.1-nano",
72
+ temperature=0.7,
73
+ max_tokens=300
74
+ )
75
+
76
+ print(llm.invoke("Write a poem about time travel."))
@@ -0,0 +1,2 @@
1
+ requests
2
+ langchain-core
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="euriai",
5
- version="0.2.1",
5
+ version="0.3.0",
6
6
  description="Python client for EURI LLM API (euron.one) with CLI and interactive wizard",
7
7
  long_description=open("README.md", encoding="utf-8").read(),
8
8
  long_description_content_type="text/markdown",
@@ -10,7 +10,8 @@ setup(
10
10
  author_email="sudhanshu@euron.one",
11
11
  packages=find_packages(),
12
12
  install_requires=[
13
- "requests"
13
+ "requests",
14
+ "langchain-core"
14
15
  ],
15
16
  python_requires=">=3.6",
16
17
  entry_points={
@@ -22,8 +23,7 @@ setup(
22
23
  "Programming Language :: Python :: 3",
23
24
  "Operating System :: OS Independent",
24
25
  "License :: OSI Approved :: MIT License",
25
- "Development Status :: 4 - Beta",
26
26
  "Intended Audience :: Developers",
27
27
  ],
28
28
  license="MIT",
29
- )
29
+ )
@@ -1 +0,0 @@
1
- from .client import EuriaiClient
@@ -1 +0,0 @@
1
- requests
File without changes
File without changes
File without changes