Latitude SDK for Python
Project description
Latitude SDK for Python
pip install latitude-sdk
Requires Python 3.9 or higher.
Go to the documentation to learn more.
Usage
from latitude_sdk import Latitude, LatitudeOptions, RunPromptOptions
sdk = Latitude("my-api-key", LatitudeOptions(
project_id="my-project-id",
version_uuid="my-version-uuid",
))
await sdk.prompts.run("joke-teller", RunPromptOptions(
parameters={"topic": "Python"},
on_event=lambda event: print(event),
on_finished=lambda event: print(event),
on_error=lambda error: print(error),
stream=True,
))
Find more examples.
Development
Requires uv 0.5.10 or higher.
- Install dependencies:
uv venv && uv sync --all-extras --all-groups - Add [dev] dependencies:
uv add [--dev] <package> - Run linter:
uv run scripts/lint.py - Run formatter:
uv run scripts/format.py - Run tests:
uv run scripts/test.py - Build package:
uv build - Publish package:
uv publish
Run only one test
import pytest
@pytest.mark.only
async def my_test(self):
# ... your code
And then run the tests with the marker only:
uv run scripts/test.py -m only
Other way is all in line:
uv run scripts/test.py <test_path>::<test_case>::<test_name>
License
The SDK is licensed under the LGPL-3.0 License - read the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file latitude_sdk-2.0.1.tar.gz.
File metadata
- Download URL: latitude_sdk-2.0.1.tar.gz
- Upload date:
- Size: 41.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc633c9698a9b644e356bc0eff18852f1f0605b0045e0b2a8431752e4288fe58
|
|
| MD5 |
9d9d30ed4e49a24f2484dd871252d745
|
|
| BLAKE2b-256 |
5306578ea61b5caf917b4d8a7fad42c23aec0391e22acbd7de5687aa00d1e678
|
File details
Details for the file latitude_sdk-2.0.1-py3-none-any.whl.
File metadata
- Download URL: latitude_sdk-2.0.1-py3-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
050045d8dfc31841dd80649354b9548c0adde9d5ac5419065a4c0afd36610a6d
|
|
| MD5 |
62ea1f156c9776aebc5a2024f5e64140
|
|
| BLAKE2b-256 |
859662488be1c6851eabd0f3b2918467098cecc4dcb1f987885dc7784686c810
|