lemonade-python-sdk 1.0.1__tar.gz → 1.0.2__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.
- {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/PKG-INFO +3 -3
- {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/README.md +2 -2
- {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/lemonade_python_sdk.egg-info/PKG-INFO +3 -3
- lemonade_python_sdk-1.0.2/lemonade_python_sdk.egg-info/SOURCES.txt +14 -0
- lemonade_python_sdk-1.0.2/lemonade_python_sdk.egg-info/top_level.txt +1 -0
- {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/setup.py +1 -1
- lemonade_python_sdk-1.0.1/lemonade_python_sdk.egg-info/SOURCES.txt +0 -14
- lemonade_python_sdk-1.0.1/lemonade_python_sdk.egg-info/top_level.txt +0 -1
- {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/LICENSE +0 -0
- {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/lemonade_python_sdk.egg-info/dependency_links.txt +0 -0
- {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/lemonade_python_sdk.egg-info/requires.txt +0 -0
- {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/__init__.py +0 -0
- {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/client.py +0 -0
- {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/model_discovery.py +0 -0
- {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/port_scanner.py +0 -0
- {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/request_builder.py +0 -0
- {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/utils.py +0 -0
- {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lemonade-python-sdk
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A clean interface for interacting with the Lemonade LLM server
|
|
5
5
|
Home-page: https://github.com/Tetramatrix/lemonade-python-sdk
|
|
6
6
|
Author: Your Name
|
|
@@ -76,8 +76,8 @@ pip install git+[https://github.com/Tetramatrix/lemonade-python-sdk.git](https:/
|
|
|
76
76
|
The SDK automatically handles port discovery, so you don't need to hardcode localhost:8000.
|
|
77
77
|
|
|
78
78
|
```python
|
|
79
|
-
from
|
|
80
|
-
from
|
|
79
|
+
from lemonade_sdk.client import LemonadeClient
|
|
80
|
+
from lemonade_sdk.port_scanner import find_available_lemonade_port
|
|
81
81
|
|
|
82
82
|
# Auto-discover running instance
|
|
83
83
|
port = find_available_lemonade_port()
|
|
@@ -35,8 +35,8 @@ pip install git+[https://github.com/Tetramatrix/lemonade-python-sdk.git](https:/
|
|
|
35
35
|
The SDK automatically handles port discovery, so you don't need to hardcode localhost:8000.
|
|
36
36
|
|
|
37
37
|
```python
|
|
38
|
-
from
|
|
39
|
-
from
|
|
38
|
+
from lemonade_sdk.client import LemonadeClient
|
|
39
|
+
from lemonade_sdk.port_scanner import find_available_lemonade_port
|
|
40
40
|
|
|
41
41
|
# Auto-discover running instance
|
|
42
42
|
port = find_available_lemonade_port()
|
{lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/lemonade_python_sdk.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lemonade-python-sdk
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A clean interface for interacting with the Lemonade LLM server
|
|
5
5
|
Home-page: https://github.com/Tetramatrix/lemonade-python-sdk
|
|
6
6
|
Author: Your Name
|
|
@@ -76,8 +76,8 @@ pip install git+[https://github.com/Tetramatrix/lemonade-python-sdk.git](https:/
|
|
|
76
76
|
The SDK automatically handles port discovery, so you don't need to hardcode localhost:8000.
|
|
77
77
|
|
|
78
78
|
```python
|
|
79
|
-
from
|
|
80
|
-
from
|
|
79
|
+
from lemonade_sdk.client import LemonadeClient
|
|
80
|
+
from lemonade_sdk.port_scanner import find_available_lemonade_port
|
|
81
81
|
|
|
82
82
|
# Auto-discover running instance
|
|
83
83
|
port = find_available_lemonade_port()
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
setup.py
|
|
4
|
+
lemonade_python_sdk.egg-info/PKG-INFO
|
|
5
|
+
lemonade_python_sdk.egg-info/SOURCES.txt
|
|
6
|
+
lemonade_python_sdk.egg-info/dependency_links.txt
|
|
7
|
+
lemonade_python_sdk.egg-info/requires.txt
|
|
8
|
+
lemonade_python_sdk.egg-info/top_level.txt
|
|
9
|
+
lemonade_sdk/__init__.py
|
|
10
|
+
lemonade_sdk/client.py
|
|
11
|
+
lemonade_sdk/model_discovery.py
|
|
12
|
+
lemonade_sdk/port_scanner.py
|
|
13
|
+
lemonade_sdk/request_builder.py
|
|
14
|
+
lemonade_sdk/utils.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lemonade_sdk
|
|
@@ -13,7 +13,7 @@ with open("LICENSE", "r", encoding="utf-8") as fh:
|
|
|
13
13
|
|
|
14
14
|
setup(
|
|
15
15
|
name="lemonade-python-sdk",
|
|
16
|
-
version="1.0.
|
|
16
|
+
version="1.0.2",
|
|
17
17
|
author="Your Name",
|
|
18
18
|
author_email="your.email@example.com",
|
|
19
19
|
description="A clean interface for interacting with the Lemonade LLM server",
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
LICENSE
|
|
2
|
-
README.md
|
|
3
|
-
setup.py
|
|
4
|
-
lemonade_integration/__init__.py
|
|
5
|
-
lemonade_integration/client.py
|
|
6
|
-
lemonade_integration/model_discovery.py
|
|
7
|
-
lemonade_integration/port_scanner.py
|
|
8
|
-
lemonade_integration/request_builder.py
|
|
9
|
-
lemonade_integration/utils.py
|
|
10
|
-
lemonade_python_sdk.egg-info/PKG-INFO
|
|
11
|
-
lemonade_python_sdk.egg-info/SOURCES.txt
|
|
12
|
-
lemonade_python_sdk.egg-info/dependency_links.txt
|
|
13
|
-
lemonade_python_sdk.egg-info/requires.txt
|
|
14
|
-
lemonade_python_sdk.egg-info/top_level.txt
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
lemonade_integration
|
|
File without changes
|
|
File without changes
|
{lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/lemonade_python_sdk.egg-info/requires.txt
RENAMED
|
File without changes
|
|
File without changes
|
{lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/utils.py
RENAMED
|
File without changes
|
|
File without changes
|