feat(api/auth): switch-to-stateful-authentication (#5438)

This commit is contained in:
-LAN-
2024-06-21 12:39:07 +08:00
committed by GitHub
parent 26b6fd2236
commit 1336b844fd
8 changed files with 89 additions and 43 deletions

View File

@@ -1,6 +1,29 @@
__all__ = [
'base', 'conversation', 'message', 'index', 'app_model_config', 'account', 'document', 'dataset',
'app', 'completion', 'audio', 'file'
]
from . import (
account,
app,
app_model_config,
audio,
base,
completion,
conversation,
dataset,
document,
file,
index,
message,
)
from . import *
__all__ = [
"base",
"conversation",
"message",
"index",
"app_model_config",
"account",
"document",
"dataset",
"app",
"completion",
"audio",
"file",
]