latitude-sdk 2.1.0__tar.gz → 2.1.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.
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/PKG-INFO +2 -2
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/pyproject.toml +2 -2
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/uv.lock +5 -6
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/.gitignore +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/.python-version +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/README.md +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/scripts/format.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/scripts/lint.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/scripts/test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/client/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/client/client.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/client/payloads.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/client/router.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/env/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/env/env.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/py.typed +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/sdk/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/sdk/errors.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/sdk/evaluations.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/sdk/latitude.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/sdk/logs.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/sdk/prompts.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/sdk/types.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/util/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/src/latitude_sdk/util/utils.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/evaluations/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/evaluations/create_result_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/evaluations/trigger_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/logs/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/logs/create_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/prompts/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/prompts/chat_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/prompts/get_all_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/prompts/get_or_create_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/prompts/get_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/prompts/render_chain_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/prompts/render_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/prompts/run_test.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/utils/__init__.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/utils/fixtures.py +0 -0
- {latitude_sdk-2.1.0 → latitude_sdk-2.1.1}/tests/utils/utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: latitude-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.1
|
4
4
|
Summary: Latitude SDK for Python
|
5
5
|
Project-URL: repository, https://github.com/latitude-dev/latitude-llm/tree/main/packages/sdks/python
|
6
6
|
Project-URL: homepage, https://github.com/latitude-dev/latitude-llm/tree/main/packages/sdks/python#readme
|
@@ -11,7 +11,7 @@ License-Expression: LGPL-3.0
|
|
11
11
|
Requires-Python: <3.13,>=3.9
|
12
12
|
Requires-Dist: httpx-sse>=0.4.0
|
13
13
|
Requires-Dist: httpx>=0.28.1
|
14
|
-
Requires-Dist: promptl-ai>=1.0.
|
14
|
+
Requires-Dist: promptl-ai>=1.0.6
|
15
15
|
Requires-Dist: pydantic>=2.10.3
|
16
16
|
Requires-Dist: typing-extensions>=4.12.2
|
17
17
|
Description-Content-Type: text/markdown
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "latitude-sdk"
|
3
|
-
version = "2.1.
|
3
|
+
version = "2.1.1"
|
4
4
|
description = "Latitude SDK for Python"
|
5
5
|
authors = [{ name = "Latitude Data SL", email = "hello@latitude.so" }]
|
6
6
|
maintainers = [{ name = "Latitude Data SL", email = "hello@latitude.so" }]
|
@@ -15,7 +15,7 @@ dependencies = [
|
|
15
15
|
"httpx-sse>=0.4.0",
|
16
16
|
"pydantic>=2.10.3",
|
17
17
|
"typing-extensions>=4.12.2",
|
18
|
-
"promptl-ai>=1.0.
|
18
|
+
"promptl-ai>=1.0.6",
|
19
19
|
]
|
20
20
|
|
21
21
|
[dependency-groups]
|
@@ -1,5 +1,4 @@
|
|
1
1
|
version = 1
|
2
|
-
revision = 1
|
3
2
|
requires-python = ">=3.9, <3.13"
|
4
3
|
|
5
4
|
[[package]]
|
@@ -140,7 +139,7 @@ wheels = [
|
|
140
139
|
|
141
140
|
[[package]]
|
142
141
|
name = "latitude-sdk"
|
143
|
-
version = "2.1.
|
142
|
+
version = "2.1.1"
|
144
143
|
source = { editable = "." }
|
145
144
|
dependencies = [
|
146
145
|
{ name = "httpx" },
|
@@ -165,7 +164,7 @@ dev = [
|
|
165
164
|
requires-dist = [
|
166
165
|
{ name = "httpx", specifier = ">=0.28.1" },
|
167
166
|
{ name = "httpx-sse", specifier = ">=0.4.0" },
|
168
|
-
{ name = "promptl-ai", specifier = ">=1.0.
|
167
|
+
{ name = "promptl-ai", specifier = ">=1.0.6" },
|
169
168
|
{ name = "pydantic", specifier = ">=2.10.3" },
|
170
169
|
{ name = "typing-extensions", specifier = ">=4.12.2" },
|
171
170
|
]
|
@@ -210,16 +209,16 @@ wheels = [
|
|
210
209
|
|
211
210
|
[[package]]
|
212
211
|
name = "promptl-ai"
|
213
|
-
version = "1.0.
|
212
|
+
version = "1.0.6"
|
214
213
|
source = { registry = "https://pypi.org/simple" }
|
215
214
|
dependencies = [
|
216
215
|
{ name = "pydantic" },
|
217
216
|
{ name = "typing-extensions" },
|
218
217
|
{ name = "wasmtime" },
|
219
218
|
]
|
220
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
219
|
+
sdist = { url = "https://files.pythonhosted.org/packages/81/cf/25354b4f34a028840729b9a33421e6e2adca9ea5920450f63fc606ed4fbd/promptl_ai-1.0.6.tar.gz", hash = "sha256:caf8ab08b77341384cd6f68e68b305447a7ecb86b161acb9a56c6b1d68b6d1b8", size = 1013653 }
|
221
220
|
wheels = [
|
222
|
-
{ url = "https://files.pythonhosted.org/packages/
|
221
|
+
{ url = "https://files.pythonhosted.org/packages/12/3b/64dba92f43a697c04a7fc2a11988bde9d48ef7ced9d232b709d059b25bd1/promptl_ai-1.0.6-py3-none-any.whl", hash = "sha256:d991ef54fb979c789a927fadb6c6f7038ab08635875c355e002ba33025cd1843", size = 1002087 },
|
223
222
|
]
|
224
223
|
|
225
224
|
[[package]]
|
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
|
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
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|