Commit d1ca98a2 authored by Your Name's avatar Your Name

Bump version to 0.99.9

Fixes:
- Kilo OAuth2 device auth initiation 500 error (missing empty json payload)
- Kilo provider model prefetch at startup for OAuth2 credentials
- Rotations save endpoint 500 error
- Autoselect save endpoint config shadowing bug
- Analytics page Jinja2 TemplateSyntaxError
parent b52224b8
...@@ -54,7 +54,7 @@ from .auth.qwen import QwenOAuth2 ...@@ -54,7 +54,7 @@ from .auth.qwen import QwenOAuth2
from .handlers import RequestHandler, RotationHandler, AutoselectHandler from .handlers import RequestHandler, RotationHandler, AutoselectHandler
from .utils import count_messages_tokens, split_messages_into_chunks, get_max_request_tokens_for_model from .utils import count_messages_tokens, split_messages_into_chunks, get_max_request_tokens_for_model
__version__ = "0.99.8" __version__ = "0.99.9"
__all__ = [ __all__ = [
# Config # Config
"config", "config",
......
...@@ -105,6 +105,7 @@ class KiloOAuth2: ...@@ -105,6 +105,7 @@ class KiloOAuth2:
response = await client.post( response = await client.post(
url, url,
headers={"Content-Type": "application/json"}, headers={"Content-Type": "application/json"},
json={},
timeout=30.0 timeout=30.0
) )
......
...@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" ...@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "aisbf" name = "aisbf"
version = "0.99.8" version = "0.99.9"
description = "AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations" description = "AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations"
readme = "README.md" readme = "README.md"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
......
...@@ -49,7 +49,7 @@ class InstallCommand(_install): ...@@ -49,7 +49,7 @@ class InstallCommand(_install):
setup( setup(
name="aisbf", name="aisbf",
version="0.99.8", version="0.99.9",
author="AISBF Contributors", author="AISBF Contributors",
author_email="stefy@nexlab.net", author_email="stefy@nexlab.net",
description="AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations", description="AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment