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.
Files changed (18) hide show
  1. {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/PKG-INFO +3 -3
  2. {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/README.md +2 -2
  3. {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/lemonade_python_sdk.egg-info/PKG-INFO +3 -3
  4. lemonade_python_sdk-1.0.2/lemonade_python_sdk.egg-info/SOURCES.txt +14 -0
  5. lemonade_python_sdk-1.0.2/lemonade_python_sdk.egg-info/top_level.txt +1 -0
  6. {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/setup.py +1 -1
  7. lemonade_python_sdk-1.0.1/lemonade_python_sdk.egg-info/SOURCES.txt +0 -14
  8. lemonade_python_sdk-1.0.1/lemonade_python_sdk.egg-info/top_level.txt +0 -1
  9. {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/LICENSE +0 -0
  10. {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/lemonade_python_sdk.egg-info/dependency_links.txt +0 -0
  11. {lemonade_python_sdk-1.0.1 → lemonade_python_sdk-1.0.2}/lemonade_python_sdk.egg-info/requires.txt +0 -0
  12. {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/__init__.py +0 -0
  13. {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/client.py +0 -0
  14. {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/model_discovery.py +0 -0
  15. {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/port_scanner.py +0 -0
  16. {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/request_builder.py +0 -0
  17. {lemonade_python_sdk-1.0.1/lemonade_integration → lemonade_python_sdk-1.0.2/lemonade_sdk}/utils.py +0 -0
  18. {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.1
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 lemonade_integration.client import LemonadeClient
80
- from lemonade_integration.port_scanner import find_available_lemonade_port
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 lemonade_integration.client import LemonadeClient
39
- from lemonade_integration.port_scanner import find_available_lemonade_port
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()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lemonade-python-sdk
3
- Version: 1.0.1
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 lemonade_integration.client import LemonadeClient
80
- from lemonade_integration.port_scanner import find_available_lemonade_port
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
@@ -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.1",
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