Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
aisbf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexlab
aisbf
Commits
1491d963
Commit
1491d963
authored
Apr 03, 2026
by
Your Name
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release 0.9.7
parent
3458d0f7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
9 deletions
+42
-9
CHANGELOG.md
CHANGELOG.md
+12
-0
providers.json
config/providers.json
+4
-7
pyproject.toml
pyproject.toml
+1
-1
setup.py
setup.py
+25
-1
No files found.
CHANGELOG.md
View file @
1491d963
...
...
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.9.7] - 2026-04-03
### Fixed
-
**PyPI Package Extension Files**
: Fixed missing static/extension files in PyPI package
-
Added static/ directory and all extension files to setup.py data_files
-
Includes aisbf-oauth2-extension.zip and all extension source files
-
Extension download endpoint now works correctly after pip install
-
Fixes "Extension files not found" error when downloading from dashboard
### Changed
-
**Version Bump**
: Updated version to 0.9.7 in setup.py and pyproject.toml
## [0.9.6] - 2026-04-03
### Fixed
...
...
config/providers.json
View file @
1491d963
...
...
@@ -174,17 +174,14 @@
"kilo"
:
{
"id"
:
"kilo"
,
"name"
:
"KiloCode"
,
"endpoint"
:
"https://
kilo.ai/api/openrouter/v1
"
,
"type"
:
"kilo"
,
"endpoint"
:
"https://
api.kilo.ai/api/openrouter
"
,
"type"
:
"kilo
code
"
,
"api_key_required"
:
false
,
"api_key"
:
""
,
"nsfw"
:
false
,
"privacy"
:
false
,
"api_key"
:
"YOUR_KILO_API_KEY"
,
"rate_limit"
:
0
,
"kilo_config"
:
{
"_comment"
:
"Uses Kilo OAuth2 Device Authorization Grant flow"
,
"credentials_file"
:
"~/.kilo_credentials.json"
,
"api_base"
:
"https://api.kilo.ai"
"api_base"
:
"https://api.kilo.ai
/api/openrouter
"
}
},
"perplexity"
:
{
...
...
pyproject.toml
View file @
1491d963
...
...
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name
=
"aisbf"
version
=
"0.9.
6
"
version
=
"0.9.
7
"
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"
...
...
setup.py
View file @
1491d963
...
...
@@ -49,7 +49,7 @@ class InstallCommand(_install):
setup
(
name
=
"aisbf"
,
version
=
"0.9.
6
"
,
version
=
"0.9.
7
"
,
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"
,
...
...
@@ -162,6 +162,30 @@ setup(
'templates/dashboard/user_tokens.html'
,
'templates/dashboard/rate_limits.html'
,
]),
# Install static files (extension)
(
'share/aisbf/static'
,
[
'static/aisbf-oauth2-extension.zip'
,
]),
(
'share/aisbf/static/extension'
,
[
'static/extension/background.js'
,
'static/extension/build.sh'
,
'static/extension/content.js'
,
'static/extension/generate_icons.py'
,
'static/extension/manifest.json'
,
'static/extension/options.html'
,
'static/extension/options.js'
,
'static/extension/popup.html'
,
'static/extension/popup.js'
,
'static/extension/README.md'
,
]),
(
'share/aisbf/static/extension/icons'
,
[
'static/extension/icons/icon16.png'
,
'static/extension/icons/icon16.svg'
,
'static/extension/icons/icon48.png'
,
'static/extension/icons/icon48.svg'
,
'static/extension/icons/icon128.png'
,
'static/extension/icons/icon128.svg'
,
]),
],
entry_points
=
{
"console_scripts"
:
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment