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 README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FAIM SDK

[![PyPI version](https://badge.fury.io/py/faim-sdk.svg)](https://badge.fury.io/py/faim-sdk)
[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Production-ready Python SDK for FAIM (Foundation AI Models) - a high-performance time-series forecasting platform powered by foundation models.
Expand Down Expand Up @@ -467,7 +467,7 @@ See the `examples/` directory for complete Jupyter notebook examples:

## Requirements

- Python >= 3.11
- Python >= 3.10
- numpy >= 1.26.0
- pyarrow >= 11.0.0
- httpx >= 0.23.0
Expand Down
192 changes: 96 additions & 96 deletions examples/model_comparison_simple.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion faim_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@
"ConfigurationError",
]

__version__ = "0.4.0"
__version__ = "0.4.2"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "faim-sdk"
version = "0.4.0"
version = "0.4.2"
description = "Python SDK for FAIM time-series forecasting with foundation AI models"
authors = ["FAIM <info@faim.it.com>"]
license = "Apache-2.0"
Expand All @@ -12,7 +12,7 @@ packages = [
include = ["CHANGELOG.md", "faim_client/py.typed", "faim_sdk/py.typed", "faim_sdk/eval/py.typed"]

[tool.poetry.dependencies]
python = "^3.11"
python = "^3.10"
numpy = ">=1.26.0,<2.0.0"
pyarrow = ">=18.1.0"
httpx = ">=0.23.0,<0.29.0"
Expand Down
Loading