Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.0-alpha.92"
".": "0.2.0-alpha.93"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 18
openapi_spec_hash: 20f058101a252f7500803d66aff58eb3
openapi_spec_hash: 153617b7252b1b12f21043b2a1246f8b
config_hash: 30422a4611d93ca69e4f1aff60b9ddb5
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,35 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 0.2.0-alpha.93 (2025-09-10)

Full Changelog: [v0.2.0-alpha.92...v0.2.0-alpha.93](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.92...v0.2.0-alpha.93)

### Features

* Add user_id and session_id in traces to track users and sessions ([b7cd032](https://github.com/openlayer-ai/openlayer-python/commit/b7cd032d7bc0ad80d5d025decc7db46720b81349))
* **api:** api update ([e65c84e](https://github.com/openlayer-ai/openlayer-python/commit/e65c84e5420874636c405ddd5cce8dd2f4e69bbf))


### Chores

* closes OPEN-7337 Exclude examples from linting action ([9730dc0](https://github.com/openlayer-ai/openlayer-python/commit/9730dc0d7e9ccbd5db08a9188caa3bff337a0d20))
* exclude custom lib from linting action ([89f0d21](https://github.com/openlayer-ai/openlayer-python/commit/89f0d2117df3ab07da397877cd24f5fbd0bca14d))
* **internal:** move mypy configurations to `pyproject.toml` file ([49b32b4](https://github.com/openlayer-ai/openlayer-python/commit/49b32b4095ad06abda2ef43fc04edd3ba9620c52))
* **internal:** version bump ([cb69e2e](https://github.com/openlayer-ai/openlayer-python/commit/cb69e2e0a1765615efda7a7ff7af4badbb3b7c68))
* **internal:** version bump ([59e1a98](https://github.com/openlayer-ai/openlayer-python/commit/59e1a983a9b7e9975a34520e26055e7ef6b236cb))
* **tests:** simplify `get_platform` test ([d30a165](https://github.com/openlayer-ai/openlayer-python/commit/d30a16505f86135c3f5980307a9ae073de1a4708))


### Styles

* reverted back to previous version for data_stream_params.py ([89d6a5d](https://github.com/openlayer-ai/openlayer-python/commit/89d6a5d4c1e47f13662dc95feee4dde27371318a))


### Refactors

* import fixes ([bd78a73](https://github.com/openlayer-ai/openlayer-python/commit/bd78a73b6d692d04c06f862a934767d87653ad8c))

## 0.2.0-alpha.92 (2025-09-09)

Full Changelog: [v0.2.0-alpha.91...v0.2.0-alpha.92](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.91...v0.2.0-alpha.92)
Expand Down
50 changes: 0 additions & 50 deletions mypy.ini

This file was deleted.

55 changes: 53 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "openlayer"
version = "0.2.0-alpha.92"
version = "0.2.0-alpha.93"
description = "The official Python library for the openlayer API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down Expand Up @@ -62,7 +62,6 @@ dev-dependencies = [
"dirty-equals>=0.6.0",
"importlib-metadata>=6.7.0",
"rich>=13.7.1",
"nest_asyncio==1.6.0",
"pytest-xdist>=3.6.1",
]

Expand Down Expand Up @@ -165,6 +164,58 @@ reportOverlappingOverload = false
reportImportCycles = false
reportPrivateUsage = false

[tool.mypy]
pretty = true
show_error_codes = true

# Exclude _files.py because mypy isn't smart enough to apply
# the correct type narrowing and as this is an internal module
# it's fine to just use Pyright.
#
# We also exclude our `tests` as mypy doesn't always infer
# types correctly and Pyright will still catch any type errors.
exclude = ['src/openlayer/_files.py', '_dev/.*.py', 'tests/.*', 'examples/.*', 'src/openlayer/lib/.*']

strict_equality = true
implicit_reexport = true
check_untyped_defs = true
no_implicit_optional = true

warn_return_any = true
warn_unreachable = true
warn_unused_configs = true

# Turn these options off as it could cause conflicts
# with the Pyright options.
warn_unused_ignores = false
warn_redundant_casts = false

disallow_any_generics = true
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_subclassing_any = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
cache_fine_grained = true

# By default, mypy reports an error if you assign a value to the result
# of a function call that doesn't return anything. We do this in our test
# cases:
# ```
# result = ...
# assert result is None
# ```
# Changing this codegen to make mypy happy would increase complexity
# and would not be worth it.
disable_error_code = "func-returns-value,overload-cannot-match"

# https://github.com/python/mypy/issues/12162
[[tool.mypy.overrides]]
module = "black.files.*"
ignore_errors = true
ignore_missing_imports = true


[tool.ruff]
line-length = 120
output-format = "grouped"
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ multidict==6.5.0
mypy==1.14.1
mypy-extensions==1.0.0
# via mypy
nest-asyncio==1.6.0
nodeenv==1.8.0
# via pyright
nox==2023.4.22
Expand Down
2 changes: 1 addition & 1 deletion src/openlayer/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "openlayer"
__version__ = "0.2.0-alpha.92" # x-release-please-version
__version__ = "0.2.0-alpha.93" # x-release-please-version
6 changes: 6 additions & 0 deletions src/openlayer/types/inference_pipelines/data_stream_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,19 @@ class ConfigLlmData(TypedDict, total=False):
Applies to RAG use cases. Providing the question enables RAG-specific metrics.
"""

session_id_column_name: Annotated[Optional[str], PropertyInfo(alias="sessionIdColumnName")]
"""Name of the column with the session id."""

timestamp_column_name: Annotated[str, PropertyInfo(alias="timestampColumnName")]
"""Name of the column with the timestamps.

Timestamps must be in UNIX sec format. If not provided, the upload timestamp is
used.
"""

user_id_column_name: Annotated[Optional[str], PropertyInfo(alias="userIdColumnName")]
"""Name of the column with the user id."""


class ConfigTabularClassificationData(TypedDict, total=False):
class_names: Required[Annotated[SequenceNotStr[str], PropertyInfo(alias="classNames")]]
Expand Down
4 changes: 4 additions & 0 deletions tests/api_resources/inference_pipelines/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ def test_method_stream_with_all_params(self, client: Openlayer) -> None:
}
],
"question_column_name": "question",
"session_id_column_name": "session_id",
"timestamp_column_name": "timestamp",
"user_id_column_name": "user_id",
},
rows=[
{
Expand Down Expand Up @@ -174,7 +176,9 @@ async def test_method_stream_with_all_params(self, async_client: AsyncOpenlayer)
}
],
"question_column_name": "question",
"session_id_column_name": "session_id",
"timestamp_column_name": "timestamp",
"user_id_column_name": "user_id",
},
rows=[
{
Expand Down
53 changes: 6 additions & 47 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@
import os
import sys
import json
import time
import asyncio
import inspect
import subprocess
import tracemalloc
from typing import Any, Union, cast
from textwrap import dedent
from unittest import mock
from typing_extensions import Literal

Expand All @@ -23,14 +20,17 @@

from openlayer import Openlayer, AsyncOpenlayer, APIResponseValidationError
from openlayer._types import Omit
from openlayer._utils import asyncify
from openlayer._models import BaseModel, FinalRequestOptions
from openlayer._exceptions import APIStatusError, APITimeoutError, APIResponseValidationError
from openlayer._base_client import (
DEFAULT_TIMEOUT,
HTTPX_DEFAULT_TIMEOUT,
BaseClient,
OtherPlatform,
DefaultHttpxClient,
DefaultAsyncHttpxClient,
get_platform,
make_request_options,
)

Expand Down Expand Up @@ -1791,50 +1791,9 @@ def retry_handler(_request: httpx.Request) -> httpx.Response:

assert response.http_request.headers.get("x-stainless-retry-count") == "42"

def test_get_platform(self) -> None:
# A previous implementation of asyncify could leave threads unterminated when
# used with nest_asyncio.
#
# Since nest_asyncio.apply() is global and cannot be un-applied, this
# test is run in a separate process to avoid affecting other tests.
test_code = dedent("""
import asyncio
import nest_asyncio
import threading

from openlayer._utils import asyncify
from openlayer._base_client import get_platform

async def test_main() -> None:
result = await asyncify(get_platform)()
print(result)
for thread in threading.enumerate():
print(thread.name)

nest_asyncio.apply()
asyncio.run(test_main())
""")
with subprocess.Popen(
[sys.executable, "-c", test_code],
text=True,
) as process:
timeout = 10 # seconds

start_time = time.monotonic()
while True:
return_code = process.poll()
if return_code is not None:
if return_code != 0:
raise AssertionError("calling get_platform using asyncify resulted in a non-zero exit code")

# success
break

if time.monotonic() - start_time > timeout:
process.kill()
raise AssertionError("calling get_platform using asyncify resulted in a hung process")

time.sleep(0.1)
async def test_get_platform(self) -> None:
platform = await asyncify(get_platform)()
assert isinstance(platform, (str, OtherPlatform))

async def test_proxy_environment_variables(self, monkeypatch: pytest.MonkeyPatch) -> None:
# Test that the proxy environment variables are set correctly
Expand Down