euriai 0.2.0__tar.gz → 0.2.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.
- euriai-0.2.1/PKG-INFO +61 -0
- euriai-0.2.1/README.md +45 -0
- euriai-0.2.1/euriai.egg-info/PKG-INFO +61 -0
- {euriai-0.2.0 → euriai-0.2.1}/setup.py +1 -1
- euriai-0.2.0/PKG-INFO +0 -24
- euriai-0.2.0/README.md +0 -8
- euriai-0.2.0/euriai.egg-info/PKG-INFO +0 -24
- {euriai-0.2.0 → euriai-0.2.1}/euriai/__init__.py +0 -0
- {euriai-0.2.0 → euriai-0.2.1}/euriai/cli.py +0 -0
- {euriai-0.2.0 → euriai-0.2.1}/euriai/client.py +0 -0
- {euriai-0.2.0 → euriai-0.2.1}/euriai.egg-info/SOURCES.txt +0 -0
- {euriai-0.2.0 → euriai-0.2.1}/euriai.egg-info/dependency_links.txt +0 -0
- {euriai-0.2.0 → euriai-0.2.1}/euriai.egg-info/entry_points.txt +0 -0
- {euriai-0.2.0 → euriai-0.2.1}/euriai.egg-info/requires.txt +0 -0
- {euriai-0.2.0 → euriai-0.2.1}/euriai.egg-info/top_level.txt +0 -0
- {euriai-0.2.0 → euriai-0.2.1}/setup.cfg +0 -0
euriai-0.2.1/PKG-INFO
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: euriai
|
3
|
+
Version: 0.2.1
|
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** – 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
|
+
|
euriai-0.2.1/README.md
ADDED
@@ -0,0 +1,45 @@
|
|
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
|
+
|
@@ -0,0 +1,61 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: euriai
|
3
|
+
Version: 0.2.1
|
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** – 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
|
+
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="euriai",
|
5
|
-
version="0.2.
|
5
|
+
version="0.2.1",
|
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",
|
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,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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|