euriai 0.2.0__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.
euriai-0.3.0/PKG-INFO ADDED
@@ -0,0 +1,76 @@
1
+ Metadata-Version: 2.1
2
+ Name: euriai
3
+ Version: 0.3.0
4
+ Summary: Python client for EURI LLM API (euron.one) with CLI and interactive wizard
5
+ Author: euron.one
6
+ Author-email: sudhanshu@euron.one
7
+ License: MIT
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Intended Audience :: Developers
12
+ Requires-Python: >=3.6
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: requests
15
+ Requires-Dist: langchain-core
16
+
17
+ # euriai 🧠
18
+
19
+ **EURI AI Python Client** – A simple wrapper and CLI tool for the [Euron LLM API](https://api.euron.one).
20
+ Supports completions, streaming responses, CLI interaction, and an interactive guided wizard!
21
+
22
+ ---
23
+
24
+ ## 🔧 Installation
25
+
26
+ ```bash
27
+ pip install euriai
28
+
29
+ ## python sample Usage
30
+
31
+ from euriai import EuriaiClient
32
+
33
+ client = EuriaiClient(
34
+ api_key="your_api_key_here",
35
+ model="gpt-4.1-nano" # You can also try: "gemini-2.0-flash-001", "llama-4-maverick", etc.
36
+ )
37
+
38
+ response = client.generate_completion(
39
+ prompt="Write a short poem about artificial intelligence.",
40
+ temperature=0.7,
41
+ max_tokens=300
42
+ )
43
+
44
+ print(response)
45
+
46
+
47
+ ## 💻 Command-Line Interface (CLI) Usage
48
+ Run prompts directly from the terminal:
49
+
50
+ euriai --api_key YOUR_API_KEY --prompt "Tell me a joke"
51
+
52
+
53
+ ## Enable streaming output (if supported by the model):
54
+
55
+ euriai --api_key YOUR_API_KEY --prompt "Stream a fun fact" --stream
56
+
57
+
58
+ ##List all supported model IDs with recommended use-cases and temperature/token advice:
59
+
60
+ euriai --models
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."))
euriai-0.3.0/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # euriai 🧠
2
+
3
+ **EURI AI Python Client** – A simple wrapper and CLI tool for the [Euron LLM API](https://api.euron.one).
4
+ Supports completions, streaming responses, CLI interaction, and an interactive guided wizard!
5
+
6
+ ---
7
+
8
+ ## 🔧 Installation
9
+
10
+ ```bash
11
+ pip install euriai
12
+
13
+ ## python sample Usage
14
+
15
+ from euriai import EuriaiClient
16
+
17
+ client = EuriaiClient(
18
+ api_key="your_api_key_here",
19
+ model="gpt-4.1-nano" # You can also try: "gemini-2.0-flash-001", "llama-4-maverick", etc.
20
+ )
21
+
22
+ response = client.generate_completion(
23
+ prompt="Write a short poem about artificial intelligence.",
24
+ temperature=0.7,
25
+ max_tokens=300
26
+ )
27
+
28
+ print(response)
29
+
30
+
31
+ ## 💻 Command-Line Interface (CLI) Usage
32
+ Run prompts directly from the terminal:
33
+
34
+ euriai --api_key YOUR_API_KEY --prompt "Tell me a joke"
35
+
36
+
37
+ ## Enable streaming output (if supported by the model):
38
+
39
+ euriai --api_key YOUR_API_KEY --prompt "Stream a fun fact" --stream
40
+
41
+
42
+ ##List all supported model IDs with recommended use-cases and temperature/token advice:
43
+
44
+ euriai --models
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"]
@@ -0,0 +1,76 @@
1
+ Metadata-Version: 2.1
2
+ Name: euriai
3
+ Version: 0.3.0
4
+ Summary: Python client for EURI LLM API (euron.one) with CLI and interactive wizard
5
+ Author: euron.one
6
+ Author-email: sudhanshu@euron.one
7
+ License: MIT
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Intended Audience :: Developers
12
+ Requires-Python: >=3.6
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: requests
15
+ Requires-Dist: langchain-core
16
+
17
+ # euriai 🧠
18
+
19
+ **EURI AI Python Client** – A simple wrapper and CLI tool for the [Euron LLM API](https://api.euron.one).
20
+ Supports completions, streaming responses, CLI interaction, and an interactive guided wizard!
21
+
22
+ ---
23
+
24
+ ## 🔧 Installation
25
+
26
+ ```bash
27
+ pip install euriai
28
+
29
+ ## python sample Usage
30
+
31
+ from euriai import EuriaiClient
32
+
33
+ client = EuriaiClient(
34
+ api_key="your_api_key_here",
35
+ model="gpt-4.1-nano" # You can also try: "gemini-2.0-flash-001", "llama-4-maverick", etc.
36
+ )
37
+
38
+ response = client.generate_completion(
39
+ prompt="Write a short poem about artificial intelligence.",
40
+ temperature=0.7,
41
+ max_tokens=300
42
+ )
43
+
44
+ print(response)
45
+
46
+
47
+ ## 💻 Command-Line Interface (CLI) Usage
48
+ Run prompts directly from the terminal:
49
+
50
+ euriai --api_key YOUR_API_KEY --prompt "Tell me a joke"
51
+
52
+
53
+ ## Enable streaming output (if supported by the model):
54
+
55
+ euriai --api_key YOUR_API_KEY --prompt "Stream a fun fact" --stream
56
+
57
+
58
+ ##List all supported model IDs with recommended use-cases and temperature/token advice:
59
+
60
+ euriai --models
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.0",
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
+ )
euriai-0.2.0/PKG-INFO DELETED
@@ -1,24 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: euriai
3
- Version: 0.2.0
4
- Summary: Python client for EURI LLM API (euron.one) with CLI and interactive wizard
5
- Author: euron.one
6
- Author-email: sudhanshu@euron.one
7
- License: MIT
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Operating System :: OS Independent
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Development Status :: 4 - Beta
12
- Classifier: Intended Audience :: Developers
13
- Requires-Python: >=3.6
14
- Description-Content-Type: text/markdown
15
- Requires-Dist: requests
16
-
17
- # euriai 🧠
18
-
19
- EURI AI Python Client – Simple wrapper and CLI tool for the Euron LLM API.
20
-
21
- ## 🔧 Install
22
-
23
- ```bash
24
- pip install euriai
euriai-0.2.0/README.md DELETED
@@ -1,8 +0,0 @@
1
- # euriai 🧠
2
-
3
- EURI AI Python Client – Simple wrapper and CLI tool for the Euron LLM API.
4
-
5
- ## 🔧 Install
6
-
7
- ```bash
8
- pip install euriai
@@ -1 +0,0 @@
1
- from .client import EuriaiClient
@@ -1,24 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: euriai
3
- Version: 0.2.0
4
- Summary: Python client for EURI LLM API (euron.one) with CLI and interactive wizard
5
- Author: euron.one
6
- Author-email: sudhanshu@euron.one
7
- License: MIT
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Operating System :: OS Independent
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Development Status :: 4 - Beta
12
- Classifier: Intended Audience :: Developers
13
- Requires-Python: >=3.6
14
- Description-Content-Type: text/markdown
15
- Requires-Dist: requests
16
-
17
- # euriai 🧠
18
-
19
- EURI AI Python Client – Simple wrapper and CLI tool for the Euron LLM API.
20
-
21
- ## 🔧 Install
22
-
23
- ```bash
24
- pip install euriai
@@ -1 +0,0 @@
1
- requests
File without changes
File without changes
File without changes