Commit c802cbea authored by Your Name's avatar Your Name

Bump version to 0.99.11

- Added version number to debug startup message
- Fixed Kilo OAuth2 device auth endpoint (form encoding)
- Fixed dashboard save endpoints (rotations/autoselect)
- Fixed analytics page template syntax error
- Fixed Kilo provider model prefetch at startup
- Added favicon to PyPI package
parent 5e8dc9ad
......@@ -54,7 +54,7 @@ from .auth.qwen import QwenOAuth2
from .handlers import RequestHandler, RotationHandler, AutoselectHandler
from .utils import count_messages_tokens, split_messages_into_chunks, get_max_request_tokens_for_model
__version__ = "0.99.10"
__version__ = "0.99.11"
__all__ = [
# Config
"config",
......
......@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "aisbf"
version = "0.99.10"
version = "0.99.11"
description = "AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations"
readme = "README.md"
license = "GPL-3.0-or-later"
......
......@@ -49,7 +49,7 @@ class InstallCommand(_install):
setup(
name="aisbf",
version="0.99.10",
version="0.99.11",
author="AISBF Contributors",
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",
......@@ -166,8 +166,9 @@ setup(
'templates/dashboard/user_tokens.html',
'templates/dashboard/rate_limits.html',
]),
# Install static files (extension)
# Install static files (extension and favicon)
('share/aisbf/static', [
'static/favicon.ico',
'static/aisbf-oauth2-extension.zip',
]),
('share/aisbf/static/extension', [
......
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