feat(ChatKnowledge): Support Financial Report Analysis (#1702)

Co-authored-by: hzh97 <2976151305@qq.com>
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
Co-authored-by: licunxing <864255598@qq.com>
This commit is contained in:
Aries-ckt
2024-07-26 13:40:54 +08:00
committed by GitHub
parent 22e0680a6a
commit 167d972093
160 changed files with 89339 additions and 795 deletions

View File

@@ -72,23 +72,25 @@ def add_add_common_options(func):
@click.command(name="install")
@add_add_common_options
@click.argument("name", type=str)
def install(repo: str | None, update: bool, name: str):
@click.argument("names", type=str, nargs=-1)
def install(repo: str | None, update: bool, names: list[str]):
"""Install your dbgpts(operators,agents,workflows or apps)"""
from .repo import _install_default_repos_if_no_repos, install
check_poetry_installed()
_install_default_repos_if_no_repos()
install(name, repo, with_update=update)
for name in names:
install(name, repo, with_update=update)
@click.command(name="uninstall")
@click.argument("name", type=str)
def uninstall(name: str):
@click.argument("names", type=str, nargs=-1)
def uninstall(names: list[str]):
"""Uninstall your dbgpts(operators,agents,workflows or apps)"""
from .repo import uninstall
uninstall(name)
for name in names:
uninstall(name)
@click.command(name="list-remote")