llumo 0.1.9__tar.gz → 0.1.9b10__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.
- {llumo-0.1.9 → llumo-0.1.9b10}/LICENSE +4 -4
- {llumo-0.1.9 → llumo-0.1.9b10}/MANIFEST.in +4 -4
- {llumo-0.1.9/llumo.egg-info → llumo-0.1.9b10}/PKG-INFO +27 -26
- {llumo-0.1.9 → llumo-0.1.9b10}/README.md +17 -17
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo/__init__.py +7 -7
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo/client.py +782 -561
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo/exceptions.py +51 -45
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo/execution.py +38 -38
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo/functionCalling.py +190 -190
- llumo-0.1.9b10/llumo/helpingFuntions.py +137 -0
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo/models.py +42 -42
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo/sockets.py +148 -148
- {llumo-0.1.9 → llumo-0.1.9b10/llumo.egg-info}/PKG-INFO +27 -26
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo.egg-info/SOURCES.txt +0 -2
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo.egg-info/requires.txt +4 -3
- {llumo-0.1.9 → llumo-0.1.9b10}/setup.cfg +4 -4
- llumo-0.1.9b10/setup.py +80 -0
- llumo-0.1.9/llumo/.env +0 -6
- llumo-0.1.9/llumo/helpingFuntions.py +0 -50
- llumo-0.1.9/pyproject.toml +0 -3
- llumo-0.1.9/setup.py +0 -26
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo.egg-info/dependency_links.txt +0 -0
- {llumo-0.1.9 → llumo-0.1.9b10}/llumo.egg-info/top_level.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
Copyright (c) 2025 Llumo AI
|
2
|
-
|
3
|
-
All rights reserved. This software is proprietary and confidential.
|
4
|
-
Unauthorized copying, distribution, or use of this software is strictly prohibited.
|
1
|
+
Copyright (c) 2025 Llumo AI
|
2
|
+
|
3
|
+
All rights reserved. This software is proprietary and confidential.
|
4
|
+
Unauthorized copying, distribution, or use of this software is strictly prohibited.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
include README.md
|
2
|
-
include LICENSE
|
3
|
-
include llumo/.env
|
4
|
-
recursive-include llumo *.py
|
1
|
+
include README.md
|
2
|
+
include LICENSE
|
3
|
+
include llumo/.env
|
4
|
+
recursive-include llumo *.py
|
@@ -1,26 +1,27 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: llumo
|
3
|
-
Version: 0.1.
|
4
|
-
Summary: Python SDK for interacting with the Llumo ai API.
|
5
|
-
Home-page: https://www.llumo.ai/
|
6
|
-
Author: Llumo
|
7
|
-
Author-email: product@llumo.ai
|
8
|
-
|
9
|
-
|
10
|
-
License-File: LICENSE
|
11
|
-
Requires-Dist: requests>=2.0.0
|
12
|
-
Requires-Dist:
|
13
|
-
Requires-Dist:
|
14
|
-
Requires-Dist:
|
15
|
-
Requires-Dist:
|
16
|
-
Requires-Dist: python-
|
17
|
-
Requires-Dist:
|
18
|
-
Requires-Dist:
|
19
|
-
|
20
|
-
Dynamic: author
|
21
|
-
Dynamic:
|
22
|
-
Dynamic:
|
23
|
-
Dynamic:
|
24
|
-
Dynamic:
|
25
|
-
Dynamic: requires-
|
26
|
-
Dynamic:
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: llumo
|
3
|
+
Version: 0.1.9b10
|
4
|
+
Summary: Python SDK for interacting with the Llumo ai API.
|
5
|
+
Home-page: https://www.llumo.ai/
|
6
|
+
Author: Llumo
|
7
|
+
Author-email: product@llumo.ai
|
8
|
+
Requires-Python: >=3.7
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
License-File: LICENSE
|
11
|
+
Requires-Dist: requests>=2.0.0
|
12
|
+
Requires-Dist: setuptools>=58.1.0
|
13
|
+
Requires-Dist: twine>=6.1.0
|
14
|
+
Requires-Dist: wheel>=0.45.1
|
15
|
+
Requires-Dist: build>=1.2.2.post1
|
16
|
+
Requires-Dist: python-socketio[client]==5.13.0
|
17
|
+
Requires-Dist: python-dotenv==1.1.0
|
18
|
+
Requires-Dist: openai==1.75.0
|
19
|
+
Requires-Dist: google-generativeai==0.8.5
|
20
|
+
Dynamic: author
|
21
|
+
Dynamic: author-email
|
22
|
+
Dynamic: description-content-type
|
23
|
+
Dynamic: home-page
|
24
|
+
Dynamic: license-file
|
25
|
+
Dynamic: requires-dist
|
26
|
+
Dynamic: requires-python
|
27
|
+
Dynamic: summary
|
@@ -1,17 +1,17 @@
|
|
1
|
-
# LLUMO SDK
|
2
|
-
|
3
|
-
A lightweight Python SDK to interact with the LLUMO API for evaluating LLM responses using analytics like Confidence, Clarity, Context, etc.
|
4
|
-
|
5
|
-
## 🔧 Features
|
6
|
-
|
7
|
-
- API wrapper for LLUMO's analytics endpoints
|
8
|
-
- Supports multiple analytics types
|
9
|
-
|
10
|
-
## 📦 Installation
|
11
|
-
|
12
|
-
Clone and install locally:
|
13
|
-
|
14
|
-
```bash
|
15
|
-
git clone https://github.com/yourusername/llumo-sdk.git
|
16
|
-
cd llumo-sdk
|
17
|
-
pip install .
|
1
|
+
# LLUMO SDK
|
2
|
+
|
3
|
+
A lightweight Python SDK to interact with the LLUMO API for evaluating LLM responses using analytics like Confidence, Clarity, Context, etc.
|
4
|
+
|
5
|
+
## 🔧 Features
|
6
|
+
|
7
|
+
- API wrapper for LLUMO's analytics endpoints
|
8
|
+
- Supports multiple analytics types
|
9
|
+
|
10
|
+
## 📦 Installation
|
11
|
+
|
12
|
+
Clone and install locally:
|
13
|
+
|
14
|
+
```bash
|
15
|
+
git clone https://github.com/yourusername/llumo-sdk.git
|
16
|
+
cd llumo-sdk
|
17
|
+
pip install .
|
@@ -1,7 +1,7 @@
|
|
1
|
-
from .client import LlumoClient
|
2
|
-
from .exceptions import LlumoAIError
|
3
|
-
from .helpingFuntions import *
|
4
|
-
from .models import AVAILABLEMODELS
|
5
|
-
from .execution import ModelExecutor
|
6
|
-
from .functionCalling import *
|
7
|
-
|
1
|
+
from .client import LlumoClient
|
2
|
+
from .exceptions import LlumoAIError
|
3
|
+
from .helpingFuntions import *
|
4
|
+
from .models import AVAILABLEMODELS
|
5
|
+
from .execution import ModelExecutor
|
6
|
+
from .functionCalling import *
|
7
|
+
|