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
1a2d14a2
Commit
1a2d14a2
authored
Feb 06, 2026
by
Stefy Lanza (nextime / spora )
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update version to 0.2.0 in aisbf/__init__.py
parent
e59004ad
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
__init__.py
aisbf/__init__.py
+8
-3
No files found.
aisbf/__init__.py
View file @
1a2d14a2
...
@@ -23,7 +23,7 @@ Why did the programmer quit his job? Because he didn't get arrays!
...
@@ -23,7 +23,7 @@ Why did the programmer quit his job? Because he didn't get arrays!
A modular proxy server for managing multiple AI provider integrations.
A modular proxy server for managing multiple AI provider integrations.
"""
"""
from
.config
import
config
,
Config
,
ProviderConfig
,
RotationConfig
,
AppConfig
from
.config
import
config
,
Config
,
ProviderConfig
,
RotationConfig
,
AppConfig
,
AutoselectConfig
,
AutoselectModelInfo
from
.models
import
(
from
.models
import
(
Message
,
Message
,
ChatCompletionRequest
,
ChatCompletionRequest
,
...
@@ -41,9 +41,9 @@ from .providers import (
...
@@ -41,9 +41,9 @@ from .providers import (
get_provider_handler
,
get_provider_handler
,
PROVIDER_HANDLERS
PROVIDER_HANDLERS
)
)
from
.handlers
import
RequestHandler
,
RotationHandler
from
.handlers
import
RequestHandler
,
RotationHandler
,
AutoselectHandler
__version__
=
"0.
1
.0"
__version__
=
"0.
2
.0"
__all__
=
[
__all__
=
[
# Config
# Config
"config"
,
"config"
,
...
@@ -51,6 +51,8 @@ __all__ = [
...
@@ -51,6 +51,8 @@ __all__ = [
"ProviderConfig"
,
"ProviderConfig"
,
"RotationConfig"
,
"RotationConfig"
,
"AppConfig"
,
"AppConfig"
,
"AutoselectConfig"
,
"AutoselectModelInfo"
,
# Models
# Models
"Message"
,
"Message"
,
"ChatCompletionRequest"
,
"ChatCompletionRequest"
,
...
@@ -58,6 +60,8 @@ __all__ = [
...
@@ -58,6 +60,8 @@ __all__ = [
"Model"
,
"Model"
,
"Provider"
,
"Provider"
,
"ErrorTracking"
,
"ErrorTracking"
,
"AutoselectModelInfo"
,
"AutoselectConfig"
,
# Providers
# Providers
"BaseProviderHandler"
,
"BaseProviderHandler"
,
"GoogleProviderHandler"
,
"GoogleProviderHandler"
,
...
@@ -69,4 +73,5 @@ __all__ = [
...
@@ -69,4 +73,5 @@ __all__ = [
# Handlers
# Handlers
"RequestHandler"
,
"RequestHandler"
,
"RotationHandler"
,
"RotationHandler"
,
"AutoselectHandler"
,
]
]
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