liminal-sdk-python 2026.3.0__tar.gz → 2026.3.0b1__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 (26) hide show
  1. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/PKG-INFO +4 -4
  2. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/prompt/models.py +0 -4
  3. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/pyproject.toml +13 -16
  4. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/LICENSE +0 -0
  5. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/README.md +0 -0
  6. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/__init__.py +0 -0
  7. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/auth/__init__.py +0 -0
  8. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/auth/microsoft/__init__.py +0 -0
  9. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/auth/microsoft/device_code_flow.py +0 -0
  10. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/auth/microsoft/models.py +0 -0
  11. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/client.py +0 -0
  12. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/const.py +0 -0
  13. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/__init__.py +0 -0
  14. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/llm/__init__.py +0 -0
  15. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/llm/models.py +0 -0
  16. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/llm/schemas.py +0 -0
  17. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/prompt/__init__.py +0 -0
  18. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/prompt/schemas.py +0 -0
  19. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/thread/__init__.py +0 -0
  20. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/thread/models.py +0 -0
  21. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/endpoints/thread/schemas.py +0 -0
  22. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/errors.py +0 -0
  23. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/helpers/__init__.py +0 -0
  24. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/helpers/model.py +0 -0
  25. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/helpers/schema.py +0 -0
  26. {liminal_sdk_python-2026.3.0 → liminal_sdk_python-2026.3.0b1}/liminal/helpers/typing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liminal-sdk-python
3
- Version: 2026.3.0
3
+ Version: 2026.3.0b1
4
4
  Summary: The Liminal SDK for Python
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
@@ -36,13 +36,13 @@ Requires-Dist: pytest (==9.0.2) ; extra == "lint"
36
36
  Requires-Dist: pytest (==9.0.2) ; extra == "test"
37
37
  Requires-Dist: pytest-asyncio (==1.3.0) ; extra == "lint"
38
38
  Requires-Dist: pytest-asyncio (==1.3.0) ; extra == "test"
39
- Requires-Dist: pytest-cov (==7.0.0) ; extra == "test"
39
+ Requires-Dist: pytest-cov (==7.1.0) ; extra == "test"
40
40
  Requires-Dist: pytest-httpx (==0.36.0) ; extra == "test"
41
41
  Requires-Dist: requests (>=2.32.2)
42
- Requires-Dist: ruff (==0.15.6) ; extra == "lint"
42
+ Requires-Dist: ruff (==0.15.7) ; extra == "lint"
43
43
  Requires-Dist: tomli (==2.4.0) ; extra == "release"
44
44
  Requires-Dist: tomli-w (==1.2.0) ; extra == "release"
45
- Requires-Dist: uv (==0.10.9) ; extra == "build"
45
+ Requires-Dist: uv (==0.10.12) ; extra == "build"
46
46
  Description-Content-Type: text/markdown
47
47
 
48
48
  # Liminal Python SDK
@@ -6,7 +6,6 @@ from dataclasses import dataclass, field
6
6
 
7
7
  from mashumaro import field_options
8
8
 
9
- from liminal.endpoints.thread.models import DeidentifiedToken
10
9
  from liminal.helpers.model import BaseModel
11
10
 
12
11
 
@@ -103,9 +102,6 @@ class SubmitData(BaseModel):
103
102
  deidentified_input_text_data: CleanseData = field(
104
103
  metadata=field_options(alias="deidentifiedInputTextData")
105
104
  )
106
- deidentified_context_history: list[DeidentifiedToken] = field(
107
- metadata=field_options(alias="deidentifiedContextHistory")
108
- )
109
105
  llm_model: str = field(metadata=field_options(alias="llmModel"))
110
106
  raw_llm_response_text: str = field(
111
107
  metadata=field_options(alias="rawLLMResponseText")
@@ -28,14 +28,14 @@ license = "Apache-2.0"
28
28
  name = "liminal-sdk-python"
29
29
  readme = "README.md"
30
30
  requires-python = ">=3.12,<3.15"
31
- version = "2026.03.0"
31
+ version = "2026.03.0b1"
32
32
 
33
33
  [project.optional-dependencies]
34
34
  all = [
35
35
  "liminal-sdk-python[build,lint,release,test]",
36
36
  ]
37
37
  build = [
38
- "uv==0.10.9",
38
+ "uv==0.10.12",
39
39
  ]
40
40
  lint = [
41
41
  "blacken-docs==1.20.0",
@@ -46,7 +46,7 @@ lint = [
46
46
  "pre-commit==4.5.1",
47
47
  "pytest-asyncio==1.3.0",
48
48
  "pytest==9.0.2",
49
- "ruff==0.15.6",
49
+ "ruff==0.15.7",
50
50
  ]
51
51
  release = [
52
52
  "tomli==2.4.0",
@@ -55,7 +55,7 @@ release = [
55
55
  test = [
56
56
  "pytest==9.0.2",
57
57
  "pytest-asyncio==1.3.0",
58
- "pytest-cov==7.0.0",
58
+ "pytest-cov==7.1.0",
59
59
  "pytest-httpx==0.36.0",
60
60
  ]
61
61
 
@@ -106,17 +106,14 @@ target-version = "py311"
106
106
  [tool.ruff.lint]
107
107
  future-annotations = true
108
108
  ignore = [
109
- "A005", # Shadowing a Python standard-library module
110
- "D202", # No blank lines allowed after function docstring
111
- "D203", # 1 blank line required before class docstring
112
- "D213", # Multi-line docstring summary should start at the second line
113
- "PLR0913", # This is subjective
114
- "PLW2901", # Outer {outer_kind} variable {name} overwritten by inner {inner_kind} target
115
- "PT012", # `pytest.raises()` block should contain a single simple statement
116
- "TCH", # flake8-type-checking
117
-
118
- # May conflict with the formatter:
119
- # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
109
+ "A005",
110
+ "D202",
111
+ "D203",
112
+ "D213",
113
+ "PLR0913",
114
+ "PLW2901",
115
+ "PT012",
116
+ "TCH",
120
117
  "COM812",
121
118
  "COM819",
122
119
  "D206",
@@ -133,7 +130,7 @@ ignore = [
133
130
  "W191",
134
131
  ]
135
132
  select = [
136
- "ALL"
133
+ "ALL",
137
134
  ]
138
135
 
139
136
  [tool.ruff.lint.isort]