latitude-sdk 2.0.0__tar.gz → 2.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.
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/PKG-INFO +2 -2
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/pyproject.toml +2 -2
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/uv.lock +6 -5
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/.gitignore +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/.python-version +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/README.md +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/scripts/format.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/scripts/lint.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/scripts/test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/client/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/client/client.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/client/payloads.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/client/router.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/env/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/env/env.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/py.typed +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/sdk/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/sdk/errors.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/sdk/evaluations.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/sdk/latitude.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/sdk/logs.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/sdk/prompts.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/sdk/types.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/util/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/src/latitude_sdk/util/utils.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/evaluations/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/evaluations/create_result_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/evaluations/trigger_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/logs/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/logs/create_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/prompts/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/prompts/chat_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/prompts/get_all_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/prompts/get_or_create_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/prompts/get_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/prompts/render_chain_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/prompts/render_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/prompts/run_test.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/utils/__init__.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/utils/fixtures.py +0 -0
- {latitude_sdk-2.0.0 → latitude_sdk-2.0.2}/tests/utils/utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: latitude-sdk
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.2
|
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.5
|
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.0.
|
3
|
+
version = "2.0.2"
|
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.5",
|
19
19
|
]
|
20
20
|
|
21
21
|
[dependency-groups]
|
@@ -1,4 +1,5 @@
|
|
1
1
|
version = 1
|
2
|
+
revision = 1
|
2
3
|
requires-python = ">=3.9, <3.13"
|
3
4
|
|
4
5
|
[[package]]
|
@@ -139,7 +140,7 @@ wheels = [
|
|
139
140
|
|
140
141
|
[[package]]
|
141
142
|
name = "latitude-sdk"
|
142
|
-
version = "2.0.
|
143
|
+
version = "2.0.2"
|
143
144
|
source = { editable = "." }
|
144
145
|
dependencies = [
|
145
146
|
{ name = "httpx" },
|
@@ -164,7 +165,7 @@ dev = [
|
|
164
165
|
requires-dist = [
|
165
166
|
{ name = "httpx", specifier = ">=0.28.1" },
|
166
167
|
{ name = "httpx-sse", specifier = ">=0.4.0" },
|
167
|
-
{ name = "promptl-ai", specifier = ">=1.0.
|
168
|
+
{ name = "promptl-ai", specifier = ">=1.0.5" },
|
168
169
|
{ name = "pydantic", specifier = ">=2.10.3" },
|
169
170
|
{ name = "typing-extensions", specifier = ">=4.12.2" },
|
170
171
|
]
|
@@ -209,16 +210,16 @@ wheels = [
|
|
209
210
|
|
210
211
|
[[package]]
|
211
212
|
name = "promptl-ai"
|
212
|
-
version = "1.0.
|
213
|
+
version = "1.0.5"
|
213
214
|
source = { registry = "https://pypi.org/simple" }
|
214
215
|
dependencies = [
|
215
216
|
{ name = "pydantic" },
|
216
217
|
{ name = "typing-extensions" },
|
217
218
|
{ name = "wasmtime" },
|
218
219
|
]
|
219
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
220
|
+
sdist = { url = "https://files.pythonhosted.org/packages/76/05/b54238992166d23402e44e556d3d09bc7a063942daa4c6eeab8abfff728c/promptl_ai-1.0.5.tar.gz", hash = "sha256:6536f023c119bd365ea85c2c16cb4124c832af691e1377ca8f88337836ec90a3", size = 1013545 }
|
220
221
|
wheels = [
|
221
|
-
{ url = "https://files.pythonhosted.org/packages/
|
222
|
+
{ url = "https://files.pythonhosted.org/packages/2e/d7/aee27ededbca1d8f11172cefd5f46eac42c2fd8d5299be822853f18a637a/promptl_ai-1.0.5-py3-none-any.whl", hash = "sha256:94513e660d277e69a8f431cc827244951ee4042711e6873b3f442f52f34836a5", size = 1001969 },
|
222
223
|
]
|
223
224
|
|
224
225
|
[[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
|