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
4 changes: 2 additions & 2 deletions aimon/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(
if base_url is None:
base_url = os.environ.get("CLIENT_BASE_URL")
if base_url is None:
base_url = f"https://pbe-api.aimon.ai"
base_url = f"https://sdkbe-production.aimon.ai"

super().__init__(
version=__version__,
Expand Down Expand Up @@ -256,7 +256,7 @@ def __init__(
if base_url is None:
base_url = os.environ.get("CLIENT_BASE_URL")
if base_url is None:
base_url = f"https://pbe-api.aimon.ai"
base_url = f"https://sdkbe-production.aimon.ai"

super().__init__(
version=__version__,
Expand Down
2 changes: 1 addition & 1 deletion aimon/_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__ = "aimon"
__version__ = "0.12.2"
__version__ = "0.12.3"
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
name='aimon',
python_requires='>3.8.0',
packages=find_packages(),
version="0.12.2",
version="0.12.3",
install_requires=[
"annotated-types~=0.6.0",
"anyio~=4.9.0",
Expand All @@ -19,14 +19,14 @@
"httpcore~=1.0.9",
"httpx>=0.27.2,<1.0.0",
"idna~=3.10",
"pydantic~=2.11.3",
"pydantic-core~=2.33.1",
"pydantic>=2.12.0",
"sniffio~=1.3.1",
"typing-extensions~=4.13.2"
"typing-extensions>=4.14.1"
],
author='AIMon',
author_email='info@aimon.ai',
description='The AIMon SDK that is used to interact with the AIMon API and the product.',
long_description=long_description,
long_description_content_type="text/markdown",
)