mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-27 02:52:48 +00:00
17 lines
398 B
Python
17 lines
398 B
Python
# coding=utf-8
|
||
"""
|
||
@project: maxkb
|
||
@Author:虎
|
||
@file: __init__.py
|
||
@date:2023/11/10 10:43
|
||
@desc:
|
||
"""
|
||
from .listener_manage import *
|
||
from .listener_chat_message import *
|
||
|
||
|
||
def run():
|
||
listener_manage.ListenerManagement().run()
|
||
listener_chat_message.ListenerChatMessage().run()
|
||
QuerySet(Document).filter(status=Status.embedding).update(**{'status': Status.error})
|