latitude-sdk 2.1.1__tar.gz → 2.1.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.1.1 → latitude_sdk-2.1.2}/PKG-INFO +1 -1
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/pyproject.toml +1 -1
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/client/client.py +1 -1
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/sdk/latitude.py +1 -2
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/uv.lock +2 -1
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/.gitignore +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/.python-version +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/README.md +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/scripts/format.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/scripts/lint.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/scripts/test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/client/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/client/payloads.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/client/router.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/env/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/env/env.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/py.typed +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/sdk/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/sdk/errors.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/sdk/evaluations.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/sdk/logs.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/sdk/prompts.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/sdk/types.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/util/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/src/latitude_sdk/util/utils.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/evaluations/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/evaluations/create_result_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/evaluations/trigger_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/logs/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/logs/create_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/prompts/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/prompts/chat_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/prompts/get_all_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/prompts/get_or_create_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/prompts/get_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/prompts/render_chain_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/prompts/render_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/prompts/run_test.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/utils/__init__.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.2}/tests/utils/fixtures.py +0 -0
- {latitude_sdk-2.1.1 → latitude_sdk-2.1.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.1.
|
3
|
+
Version: 2.1.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
|
@@ -34,7 +34,7 @@ DEFAULT_INTERNAL_OPTIONS = InternalOptions(
|
|
34
34
|
source=LogSources.Api,
|
35
35
|
retries=3,
|
36
36
|
delay=0.5,
|
37
|
-
timeout=
|
37
|
+
timeout=None,
|
38
38
|
)
|
39
39
|
|
40
40
|
|
@@ -63,7 +63,6 @@ class Latitude:
|
|
63
63
|
assert self._options.internal.source is not None
|
64
64
|
assert self._options.internal.retries is not None
|
65
65
|
assert self._options.internal.delay is not None
|
66
|
-
assert self._options.internal.timeout is not None
|
67
66
|
|
68
67
|
self._client = Client(
|
69
68
|
ClientOptions(
|
@@ -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.1.
|
143
|
+
version = "2.1.2"
|
143
144
|
source = { editable = "." }
|
144
145
|
dependencies = [
|
145
146
|
{ name = "httpx" },
|
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
|