├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── bug-report_en.yml │ ├── feature-request.yml │ ├── feature-request_en.yml │ ├── submit-plugin.yml │ └── submit-plugin_en.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build-dev-image.yaml │ ├── build-docker-image.yml │ ├── build-release-artifacts.yaml │ ├── publish-to-pypi.yml │ ├── run-tests.yml │ └── test-dev-image.yaml ├── .gitignore ├── .mcp.json ├── .pre-commit-config.yaml ├── AGENTS.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── README_EN.md ├── README_ES.md ├── README_FR.md ├── README_JP.md ├── README_KO.md ├── README_RU.md ├── README_TW.md ├── README_VI.md ├── codecov.yml ├── docker ├── README_K8S.md ├── deploy-k8s-test.sh ├── docker-compose.yaml └── kubernetes.yaml ├── docs ├── API_KEY_AUTH.md ├── MIGRATION_SUMMARY.md ├── PYPI_INSTALLATION.md ├── TESTING_SUMMARY.md ├── WEBSOCKET_README.md └── service-api-openapi.json ├── main.py ├── pyproject.toml ├── pytest.ini ├── res ├── announcement.json ├── announcement_saved.json ├── instance_id.json ├── logo.png ├── scripts │ └── publish_announcement.py └── social.png ├── run_tests.sh ├── src └── langbot │ ├── __init__.py │ ├── __main__.py │ ├── libs │ ├── LICENSE │ ├── README.md │ ├── coze_server_api │ │ ├── __init__.py │ │ └── client.py │ ├── dify_service_api │ │ ├── README.md │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── client_test.py │ │ │ └── errors.py │ ├── dingtalk_api │ │ ├── EchoHandler.py │ │ ├── __init__.py │ │ ├── api.py │ │ └── dingtalkevent.py │ ├── official_account_api │ │ ├── __init__.py │ │ ├── api.py │ │ └── oaevent.py │ ├── qq_official_api │ │ ├── __init__.py │ │ ├── api.py │ │ └── qqofficialevent.py │ ├── slack_api │ │ ├── __init__.py │ │ ├── api.py │ │ └── slackevent.py │ ├── wechatpad_api │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── chatroom.py │ │ │ ├── downloadpai.py │ │ │ ├── friend.py │ │ │ ├── login.py │ │ │ ├── message.py │ │ │ └── user.py │ │ ├── client.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── http_util.py │ │ │ └── terminal_printer.py │ ├── wecom_ai_bot_api │ │ ├── WXBizMsgCrypt3.py │ │ ├── api.py │ │ ├── ierror.py │ │ └── wecombotevent.py │ ├── wecom_api │ │ ├── WXBizMsgCrypt3.py │ │ ├── __init__.py │ │ ├── api.py │ │ ├── ierror.py │ │ └── wecomevent.py │ └── wecom_customer_service_api │ │ ├── __init__.py │ │ ├── api.py │ │ └── wecomcsevent.py │ ├── pkg │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── http │ │ │ ├── __init__.py │ │ │ ├── controller │ │ │ ├── __init__.py │ │ │ ├── group.py │ │ │ ├── groups │ │ │ │ ├── __init__.py │ │ │ │ ├── apikeys.py │ │ │ │ ├── files.py │ │ │ │ ├── knowledge │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── external.py │ │ │ │ ├── logs.py │ │ │ │ ├── pipelines │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pipelines.py │ │ │ │ │ └── websocket_chat.py │ │ │ │ ├── platform │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ └── bots.py │ │ │ │ ├── plugins.py │ │ │ │ ├── provider │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── models.py │ │ │ │ │ └── requesters.py │ │ │ │ ├── resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── mcp.py │ │ │ │ ├── stats.py │ │ │ │ ├── system.py │ │ │ │ ├── user.py │ │ │ │ ├── webhook_mgmt.py │ │ │ │ └── webhooks.py │ │ │ └── main.py │ │ │ └── service │ │ │ ├── __init__.py │ │ │ ├── apikey.py │ │ │ ├── bot.py │ │ │ ├── external_kb.py │ │ │ ├── knowledge.py │ │ │ ├── mcp.py │ │ │ ├── model.py │ │ │ ├── pipeline.py │ │ │ ├── user.py │ │ │ └── webhook.py │ ├── command │ │ ├── __init__.py │ │ ├── cmdmgr.py │ │ ├── operator.py │ │ └── operators │ │ │ ├── __init__.py │ │ │ ├── delc.py │ │ │ ├── last.py │ │ │ ├── list.py │ │ │ ├── next.py │ │ │ ├── prompt.py │ │ │ └── resend.py │ ├── config │ │ ├── __init__.py │ │ ├── impls │ │ │ ├── __init__.py │ │ │ ├── json.py │ │ │ ├── pymodule.py │ │ │ └── yaml.py │ │ ├── manager.py │ │ └── model.py │ ├── core │ │ ├── __init__.py │ │ ├── app.py │ │ ├── boot.py │ │ ├── bootutils │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── deps.py │ │ │ ├── files.py │ │ │ └── log.py │ │ ├── entities.py │ │ ├── migration.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ ├── m001_sensitive_word_migration.py │ │ │ ├── m002_openai_config_migration.py │ │ │ ├── m003_anthropic_requester_cfg_completion.py │ │ │ ├── m004_moonshot_cfg_completion.py │ │ │ ├── m005_deepseek_cfg_completion.py │ │ │ ├── m006_vision_config.py │ │ │ ├── m007_qcg_center_url.py │ │ │ ├── m008_ad_fixwin_config_migrate.py │ │ │ ├── m009_msg_truncator_cfg.py │ │ │ ├── m010_ollama_requester_config.py │ │ │ ├── m011_command_prefix_config.py │ │ │ ├── m012_runner_config.py │ │ │ ├── m013_http_api_config.py │ │ │ ├── m014_force_delay_config.py │ │ │ ├── m015_gitee_ai_config.py │ │ │ ├── m016_dify_service_api.py │ │ │ ├── m017_dify_api_timeout_params.py │ │ │ ├── m018_xai_config.py │ │ │ ├── m019_zhipuai_config.py │ │ │ ├── m020_wecom_config.py │ │ │ ├── m021_lark_config.py │ │ │ ├── m022_lmstudio_config.py │ │ │ ├── m023_siliconflow_config.py │ │ │ ├── m024_discord_config.py │ │ │ ├── m025_gewechat_config.py │ │ │ ├── m026_qqofficial_config.py │ │ │ ├── m027_wx_official_account_config.py │ │ │ ├── m028_aliyun_requester_config.py │ │ │ ├── m029_dashscope_app_api_config.py │ │ │ ├── m030_lark_config_cmpl.py │ │ │ ├── m031_dingtalk_config.py │ │ │ ├── m032_volcark_config.py │ │ │ ├── m033_dify_thinking_config.py │ │ │ ├── m034_gewechat_file_url_config.py │ │ │ ├── m035_wxoa_mode.py │ │ │ ├── m036_wxoa_loading_message.py │ │ │ ├── m037_mcp_config.py │ │ │ ├── m038_tg_dingtalk_markdown.py │ │ │ ├── m039_modelscope_cfg_completion.py │ │ │ └── m040_ppio_config.py │ │ ├── note.py │ │ ├── notes │ │ │ ├── __init__.py │ │ │ ├── n001_classic_msgs.py │ │ │ ├── n002_selection_mode_on_windows.py │ │ │ └── n003_print_version.py │ │ ├── stage.py │ │ ├── stages │ │ │ ├── __init__.py │ │ │ ├── build_app.py │ │ │ ├── genkeys.py │ │ │ ├── load_config.py │ │ │ ├── migrate.py │ │ │ ├── setup_logger.py │ │ │ └── show_notes.py │ │ └── taskmgr.py │ ├── discover │ │ ├── __init__.py │ │ └── engine.py │ ├── entity │ │ ├── __init__.py │ │ ├── errors │ │ │ ├── __init__.py │ │ │ ├── platform.py │ │ │ └── provider.py │ │ └── persistence │ │ │ ├── __init__.py │ │ │ ├── apikey.py │ │ │ ├── base.py │ │ │ ├── bot.py │ │ │ ├── bstorage.py │ │ │ ├── mcp.py │ │ │ ├── metadata.py │ │ │ ├── model.py │ │ │ ├── pipeline.py │ │ │ ├── plugin.py │ │ │ ├── rag.py │ │ │ ├── user.py │ │ │ ├── vector.py │ │ │ └── webhook.py │ ├── persistence │ │ ├── __init__.py │ │ ├── database.py │ │ ├── databases │ │ │ ├── __init__.py │ │ │ ├── postgresql.py │ │ │ └── sqlite.py │ │ ├── mgr.py │ │ ├── migration.py │ │ └── migrations │ │ │ ├── __init__.py │ │ │ ├── dbm001_migrate_v3_config.py │ │ │ ├── dbm002_combine_quote_msg_config.py │ │ │ ├── dbm003_n8n_config.py │ │ │ ├── dbm004_rag_kb_uuid.py │ │ │ ├── dbm005_pipeline_remove_cot_config.py │ │ │ ├── dbm006_langflow_api_config.py │ │ │ ├── dbm007_plugin_install_source.py │ │ │ ├── dbm008_plugin_config.py │ │ │ ├── dbm009_pipeline_extension_preferences.py │ │ │ ├── dbm010_pipeline_multi_knowledge_base.py │ │ │ ├── dbm011_dify_base_prompt_config.py │ │ │ ├── dbm012_pipeline_extensions_enable_all.py │ │ │ └── dbm013_knowledge_base_updated_at.py │ ├── pipeline │ │ ├── __init__.py │ │ ├── bansess │ │ │ ├── __init__.py │ │ │ └── bansess.py │ │ ├── cntfilter │ │ │ ├── __init__.py │ │ │ ├── cntfilter.py │ │ │ ├── entities.py │ │ │ ├── filter.py │ │ │ └── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── baiduexamine.py │ │ │ │ ├── banwords.py │ │ │ │ └── cntignore.py │ │ ├── controller.py │ │ ├── entities.py │ │ ├── longtext │ │ │ ├── __init__.py │ │ │ ├── longtext.py │ │ │ ├── strategies │ │ │ │ ├── __init__.py │ │ │ │ ├── forward.py │ │ │ │ └── image.py │ │ │ └── strategy.py │ │ ├── msgtrun │ │ │ ├── __init__.py │ │ │ ├── msgtrun.py │ │ │ ├── truncator.py │ │ │ └── truncators │ │ │ │ ├── __init__.py │ │ │ │ └── round.py │ │ ├── pipelinemgr.py │ │ ├── pool.py │ │ ├── preproc │ │ │ ├── __init__.py │ │ │ └── preproc.py │ │ ├── process │ │ │ ├── __init__.py │ │ │ ├── handler.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── chat.py │ │ │ │ └── command.py │ │ │ └── process.py │ │ ├── ratelimit │ │ │ ├── __init__.py │ │ │ ├── algo.py │ │ │ ├── algos │ │ │ │ ├── __init__.py │ │ │ │ └── fixedwin.py │ │ │ └── ratelimit.py │ │ ├── respback │ │ │ ├── __init__.py │ │ │ └── respback.py │ │ ├── resprule │ │ │ ├── __init__.py │ │ │ ├── entities.py │ │ │ ├── resprule.py │ │ │ ├── rule.py │ │ │ └── rules │ │ │ │ ├── __init__.py │ │ │ │ ├── atbot.py │ │ │ │ ├── prefix.py │ │ │ │ ├── random.py │ │ │ │ └── regexp.py │ │ ├── stage.py │ │ └── wrapper │ │ │ ├── __init__.py │ │ │ └── wrapper.py │ ├── platform │ │ ├── __init__.py │ │ ├── botmgr.py │ │ ├── logger.py │ │ ├── sources │ │ │ ├── __init__.py │ │ │ ├── aiocqhttp.py │ │ │ ├── aiocqhttp.yaml │ │ │ ├── dingtalk.py │ │ │ ├── dingtalk.svg │ │ │ ├── dingtalk.yaml │ │ │ ├── discord.py │ │ │ ├── discord.svg │ │ │ ├── discord.yaml │ │ │ ├── kook.png │ │ │ ├── kook.py │ │ │ ├── kook.yaml │ │ │ ├── lark.py │ │ │ ├── lark.svg │ │ │ ├── lark.yaml │ │ │ ├── legacy │ │ │ │ ├── gewechat.png │ │ │ │ ├── gewechat.py │ │ │ │ ├── gewechat.yaml │ │ │ │ ├── nakuru.png │ │ │ │ ├── nakuru.py │ │ │ │ ├── nakuru.yaml │ │ │ │ ├── qqbotpy.py │ │ │ │ ├── qqbotpy.svg │ │ │ │ └── qqbotpy.yaml │ │ │ ├── line.png │ │ │ ├── line.py │ │ │ ├── line.yaml │ │ │ ├── officialaccount.png │ │ │ ├── officialaccount.py │ │ │ ├── officialaccount.yaml │ │ │ ├── onebot.png │ │ │ ├── qqofficial.py │ │ │ ├── qqofficial.svg │ │ │ ├── qqofficial.yaml │ │ │ ├── slack.png │ │ │ ├── slack.py │ │ │ ├── slack.yaml │ │ │ ├── telegram.py │ │ │ ├── telegram.svg │ │ │ ├── telegram.yaml │ │ │ ├── websocket.yaml │ │ │ ├── websocket_adapter.py │ │ │ ├── websocket_manager.py │ │ │ ├── wechatpad.png │ │ │ ├── wechatpad.py │ │ │ ├── wechatpad.yaml │ │ │ ├── wecom.png │ │ │ ├── wecom.py │ │ │ ├── wecom.yaml │ │ │ ├── wecombot.png │ │ │ ├── wecombot.py │ │ │ ├── wecombot.yaml │ │ │ ├── wecomcs.py │ │ │ └── wecomcs.yaml │ │ └── webhook_pusher.py │ ├── plugin │ │ ├── __init__.py │ │ ├── connector.py │ │ └── handler.py │ ├── provider │ │ ├── __init__.py │ │ ├── modelmgr │ │ │ ├── __init__.py │ │ │ ├── entities.py │ │ │ ├── errors.py │ │ │ ├── modelmgr.py │ │ │ ├── requester.py │ │ │ ├── requester.yaml │ │ │ ├── requesters │ │ │ │ ├── 302ai.png │ │ │ │ ├── 302aichatcmpl.py │ │ │ │ ├── 302aichatcmpl.yaml │ │ │ │ ├── __init__.py │ │ │ │ ├── anthropic.svg │ │ │ │ ├── anthropicmsgs.py │ │ │ │ ├── anthropicmsgs.yaml │ │ │ │ ├── bailian.png │ │ │ │ ├── bailianchatcmpl.py │ │ │ │ ├── bailianchatcmpl.yaml │ │ │ │ ├── chatcmpl.py │ │ │ │ ├── chatcmpl.yaml │ │ │ │ ├── compshare.png │ │ │ │ ├── compsharechatcmpl.py │ │ │ │ ├── compsharechatcmpl.yaml │ │ │ │ ├── deepseek.svg │ │ │ │ ├── deepseekchatcmpl.py │ │ │ │ ├── deepseekchatcmpl.yaml │ │ │ │ ├── gemini.svg │ │ │ │ ├── geminichatcmpl.py │ │ │ │ ├── geminichatcmpl.yaml │ │ │ │ ├── giteeai.svg │ │ │ │ ├── giteeaichatcmpl.py │ │ │ │ ├── giteeaichatcmpl.yaml │ │ │ │ ├── jiekouai.png │ │ │ │ ├── jiekouaichatcmpl.py │ │ │ │ ├── jiekouaichatcmpl.yaml │ │ │ │ ├── lmstudio.webp │ │ │ │ ├── lmstudiochatcmpl.py │ │ │ │ ├── lmstudiochatcmpl.yaml │ │ │ │ ├── modelscope.svg │ │ │ │ ├── modelscopechatcmpl.py │ │ │ │ ├── modelscopechatcmpl.yaml │ │ │ │ ├── moonshot.png │ │ │ │ ├── moonshotchatcmpl.py │ │ │ │ ├── moonshotchatcmpl.yaml │ │ │ │ ├── newapi.png │ │ │ │ ├── newapichatcmpl.py │ │ │ │ ├── newapichatcmpl.yaml │ │ │ │ ├── ollama.svg │ │ │ │ ├── ollamachat.py │ │ │ │ ├── ollamachat.yaml │ │ │ │ ├── openai.svg │ │ │ │ ├── openrouter.svg │ │ │ │ ├── openrouterchatcmpl.py │ │ │ │ ├── openrouterchatcmpl.yaml │ │ │ │ ├── ppio.svg │ │ │ │ ├── ppiochatcmpl.py │ │ │ │ ├── ppiochatcmpl.yaml │ │ │ │ ├── qhaigc.png │ │ │ │ ├── qhaigcchatcmpl.py │ │ │ │ ├── qhaigcchatcmpl.yaml │ │ │ │ ├── shengsuanyun.py │ │ │ │ ├── shengsuanyun.svg │ │ │ │ ├── shengsuanyun.yaml │ │ │ │ ├── siliconflow.svg │ │ │ │ ├── siliconflowchatcmpl.py │ │ │ │ ├── siliconflowchatcmpl.yaml │ │ │ │ ├── tokenpony.svg │ │ │ │ ├── tokenpony.yaml │ │ │ │ ├── tokenponychatcmpl.py │ │ │ │ ├── volcark.svg │ │ │ │ ├── volcarkchatcmpl.py │ │ │ │ ├── volcarkchatcmpl.yaml │ │ │ │ ├── xai.svg │ │ │ │ ├── xaichatcmpl.py │ │ │ │ ├── xaichatcmpl.yaml │ │ │ │ ├── zhipuai.svg │ │ │ │ ├── zhipuaichatcmpl.py │ │ │ │ └── zhipuaichatcmpl.yaml │ │ │ └── token.py │ │ ├── runner.py │ │ ├── runners │ │ │ ├── __init__.py │ │ │ ├── cozeapi.py │ │ │ ├── dashscopeapi.py │ │ │ ├── difysvapi.py │ │ │ ├── langflowapi.py │ │ │ ├── localagent.py │ │ │ ├── n8nsvapi.py │ │ │ └── tboxapi.py │ │ ├── session │ │ │ ├── __init__.py │ │ │ └── sessionmgr.py │ │ └── tools │ │ │ ├── __init__.py │ │ │ ├── loader.py │ │ │ ├── loaders │ │ │ ├── __init__.py │ │ │ ├── mcp.py │ │ │ └── plugin.py │ │ │ └── toolmgr.py │ ├── rag │ │ └── knowledge │ │ │ ├── base.py │ │ │ ├── external.py │ │ │ ├── kbmgr.py │ │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── base_service.py │ │ │ ├── chunker.py │ │ │ ├── embedder.py │ │ │ ├── parser.py │ │ │ └── retriever.py │ ├── storage │ │ ├── __init__.py │ │ ├── mgr.py │ │ ├── provider.py │ │ └── providers │ │ │ ├── __init__.py │ │ │ ├── localstorage.py │ │ │ └── s3storage.py │ ├── utils │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── funcschema.py │ │ ├── image.py │ │ ├── importutil.py │ │ ├── logcache.py │ │ ├── paths.py │ │ ├── pkgmgr.py │ │ ├── platform.py │ │ ├── proxy.py │ │ └── version.py │ └── vector │ │ ├── __init__.py │ │ ├── mgr.py │ │ ├── vdb.py │ │ └── vdbs │ │ ├── __init__.py │ │ ├── chroma.py │ │ ├── milvus.py │ │ ├── pgvector_db.py │ │ └── qdrant.py │ └── templates │ ├── __init__.py │ ├── components.yaml │ ├── config.yaml │ ├── default-pipeline-config.json │ ├── legacy │ ├── command.json │ ├── pipeline.json │ ├── platform.json │ ├── provider.json │ └── system.json │ └── metadata │ ├── pipeline │ ├── ai.yaml │ ├── output.yaml │ ├── safety.yaml │ └── trigger.yaml │ └── sensitive-words.json ├── tests ├── README.md ├── __init__.py └── unit_tests │ ├── __init__.py │ ├── config │ ├── __init__.py │ ├── test_env_override.py │ └── test_webhook_display_prefix.py │ ├── pipeline │ ├── __init__.py │ ├── conftest.py │ ├── test_bansess.py │ ├── test_pipelinemgr.py │ ├── test_ratelimit.py │ ├── test_resprule.py │ └── test_simple.py │ ├── plugin │ ├── __init__.py │ ├── test_plugin_component_filtering.py │ └── test_plugin_list_sorting.py │ └── storage │ ├── __init__.py │ └── test_storage_provider_selection.py └── web ├── .env.example ├── .gitignore ├── .lintstagedrc.json ├── .prettierrc.mjs ├── README.md ├── components.json ├── eslint.config.mjs ├── next ├── next.config.ts ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── src ├── app │ ├── assets │ │ └── langbot-logo.webp │ ├── favicon.ico │ ├── global.css │ ├── home │ │ ├── bots │ │ │ ├── BotDetailDialog.tsx │ │ │ ├── botConfig.module.css │ │ │ ├── components │ │ │ │ ├── bot-card │ │ │ │ │ ├── BotCard.tsx │ │ │ │ │ ├── BotCardVO.ts │ │ │ │ │ └── botCard.module.css │ │ │ │ ├── bot-form │ │ │ │ │ ├── BotForm.tsx │ │ │ │ │ └── ChooseEntity.ts │ │ │ │ └── bot-log │ │ │ │ │ ├── BotLogManager.ts │ │ │ │ │ └── view │ │ │ │ │ ├── BotLogCard.tsx │ │ │ │ │ ├── BotLogListComponent.tsx │ │ │ │ │ └── botLog.module.css │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── api-integration-dialog │ │ │ │ └── ApiIntegrationDialog.tsx │ │ │ ├── dynamic-form │ │ │ │ ├── DynamicFormComponent.tsx │ │ │ │ ├── DynamicFormItemComponent.tsx │ │ │ │ ├── DynamicFormItemConfig.ts │ │ │ │ └── N8nAuthFormComponent.tsx │ │ │ ├── home-sidebar │ │ │ │ ├── HomeSidebar.module.css │ │ │ │ ├── HomeSidebar.tsx │ │ │ │ ├── HomeSidebarChild.tsx │ │ │ │ └── sidbarConfigList.tsx │ │ │ ├── home-titlebar │ │ │ │ ├── HomeTitleBar.tsx │ │ │ │ └── HomeTittleBar.module.css │ │ │ └── password-change-dialog │ │ │ │ └── PasswordChangeDialog.tsx │ │ ├── knowledge │ │ │ ├── KBDetailDialog.tsx │ │ │ ├── components │ │ │ │ ├── external-kb-card │ │ │ │ │ ├── ExternalKBCard.tsx │ │ │ │ │ └── ExternalKBCardVO.ts │ │ │ │ ├── external-kb-form │ │ │ │ │ └── ExternalKBForm.tsx │ │ │ │ ├── kb-card │ │ │ │ │ ├── KBCard.module.css │ │ │ │ │ ├── KBCard.tsx │ │ │ │ │ └── KBCardVO.ts │ │ │ │ ├── kb-docs │ │ │ │ │ ├── FileUploadZone.tsx │ │ │ │ │ ├── KBDoc.tsx │ │ │ │ │ └── documents │ │ │ │ │ │ ├── columns.tsx │ │ │ │ │ │ └── data-table.tsx │ │ │ │ ├── kb-form │ │ │ │ │ ├── ChooseEntity.ts │ │ │ │ │ └── KBForm.tsx │ │ │ │ └── kb-retrieve │ │ │ │ │ ├── ExternalKBRetrieve.tsx │ │ │ │ │ ├── KBRetrieve.tsx │ │ │ │ │ └── KBRetrieveGeneric.tsx │ │ │ ├── knowledgeBase.module.css │ │ │ └── page.tsx │ │ ├── layout.module.css │ │ ├── layout.tsx │ │ ├── models │ │ │ ├── LLMConfig.module.css │ │ │ ├── component │ │ │ │ ├── ChooseRequesterEntity.ts │ │ │ │ ├── ICreateEmbeddingField.ts │ │ │ │ ├── ICreateLLMField.ts │ │ │ │ ├── embedding-card │ │ │ │ │ ├── EmbeddingCard.module.css │ │ │ │ │ ├── EmbeddingCard.tsx │ │ │ │ │ └── EmbeddingCardVO.ts │ │ │ │ ├── embedding-form │ │ │ │ │ └── EmbeddingForm.tsx │ │ │ │ ├── llm-card │ │ │ │ │ ├── LLMCard.module.css │ │ │ │ │ ├── LLMCard.tsx │ │ │ │ │ └── LLMCardVO.ts │ │ │ │ └── llm-form │ │ │ │ │ └── LLMForm.tsx │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── pipelines │ │ │ ├── PipelineDetailDialog.tsx │ │ │ ├── components │ │ │ │ ├── debug-dialog │ │ │ │ │ ├── AtBadge.tsx │ │ │ │ │ ├── DebugDialog.tsx │ │ │ │ │ └── ImagePreviewDialog.tsx │ │ │ │ ├── pipeline-card │ │ │ │ │ ├── PipelineCard.tsx │ │ │ │ │ ├── PipelineCardVO.ts │ │ │ │ │ └── pipelineCard.module.css │ │ │ │ ├── pipeline-extensions │ │ │ │ │ └── PipelineExtension.tsx │ │ │ │ └── pipeline-form │ │ │ │ │ ├── PipelineFormComponent.tsx │ │ │ │ │ └── pipelineFormStyle.module.css │ │ │ ├── page.tsx │ │ │ └── pipelineConfig.module.css │ │ └── plugins │ │ │ ├── components │ │ │ ├── plugin-installed │ │ │ │ ├── PluginCardVO.ts │ │ │ │ ├── PluginComponentList.tsx │ │ │ │ ├── PluginInstalledComponent.tsx │ │ │ │ ├── plugin-card │ │ │ │ │ └── PluginCardComponent.tsx │ │ │ │ ├── plugin-form │ │ │ │ │ └── PluginForm.tsx │ │ │ │ └── plugin-readme │ │ │ │ │ └── PluginReadme.tsx │ │ │ ├── plugin-market │ │ │ │ ├── PluginMarketComponent.tsx │ │ │ │ └── plugin-market-card │ │ │ │ │ ├── PluginMarketCardComponent.tsx │ │ │ │ │ └── PluginMarketCardVO.ts │ │ │ └── plugin-sort │ │ │ │ └── PluginSortDialog.tsx │ │ │ ├── mcp-server │ │ │ ├── MCPCardVO.ts │ │ │ ├── MCPServerComponent.tsx │ │ │ ├── mcp-card │ │ │ │ └── MCPCardComponent.tsx │ │ │ └── mcp-form │ │ │ │ ├── MCPDeleteConfirmDialog.tsx │ │ │ │ └── MCPFormDialog.tsx │ │ │ ├── page.tsx │ │ │ └── plugins.module.css │ ├── infra │ │ ├── basic-component │ │ │ └── create-card-component │ │ │ │ ├── CreateCardComponent.tsx │ │ │ │ └── createCartComponent.module.css │ │ ├── entities │ │ │ ├── api │ │ │ │ └── index.ts │ │ │ ├── common.ts │ │ │ ├── form │ │ │ │ └── dynamic.ts │ │ │ ├── message │ │ │ │ └── index.ts │ │ │ ├── pipeline │ │ │ │ └── index.ts │ │ │ └── plugin │ │ │ │ └── index.ts │ │ ├── http │ │ │ ├── BackendClient.ts │ │ │ ├── BaseHttpClient.ts │ │ │ ├── CloudServiceClient.ts │ │ │ ├── HttpClient.ts │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── requestParam │ │ │ │ └── bots │ │ │ │ ├── GetBotLogsRequest.ts │ │ │ │ └── GetBotLogsResponse.ts │ │ └── websocket │ │ │ └── WebSocketClient.ts │ ├── layout.tsx │ ├── login │ │ ├── layout.tsx │ │ └── page.tsx │ ├── page.tsx │ ├── register │ │ ├── layout.tsx │ │ └── page.tsx │ └── reset-password │ │ ├── layout.tsx │ │ └── page.tsx ├── components │ ├── providers │ │ └── theme-provider.tsx │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── language-selector.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── theme-toggle.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── hooks │ ├── use-mobile.ts │ └── useAsyncTask.ts ├── i18n │ ├── I18nProvider.tsx │ ├── index.ts │ └── locales │ │ ├── en-US.ts │ │ ├── ja-JP.ts │ │ ├── zh-Hans.ts │ │ └── zh-Hant.ts ├── i18next.d.ts ├── lib │ └── utils.ts └── styles │ └── github-markdown.css ├── tsconfig.json └── web@0.1.0 /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/ISSUE_TEMPLATE/bug-report_en.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/ISSUE_TEMPLATE/feature-request_en.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/submit-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/ISSUE_TEMPLATE/submit-plugin.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/submit-plugin_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/ISSUE_TEMPLATE/submit-plugin_en.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-dev-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/workflows/build-dev-image.yaml -------------------------------------------------------------------------------- /.github/workflows/build-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/workflows/build-docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/build-release-artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/workflows/build-release-artifacts.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/test-dev-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.github/workflows/test-dev-image.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.mcp.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README_EN.md -------------------------------------------------------------------------------- /README_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README_ES.md -------------------------------------------------------------------------------- /README_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README_FR.md -------------------------------------------------------------------------------- /README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README_JP.md -------------------------------------------------------------------------------- /README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README_KO.md -------------------------------------------------------------------------------- /README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README_RU.md -------------------------------------------------------------------------------- /README_TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README_TW.md -------------------------------------------------------------------------------- /README_VI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/README_VI.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/codecov.yml -------------------------------------------------------------------------------- /docker/README_K8S.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docker/README_K8S.md -------------------------------------------------------------------------------- /docker/deploy-k8s-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docker/deploy-k8s-test.sh -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /docker/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docker/kubernetes.yaml -------------------------------------------------------------------------------- /docs/API_KEY_AUTH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docs/API_KEY_AUTH.md -------------------------------------------------------------------------------- /docs/MIGRATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docs/MIGRATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/PYPI_INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docs/PYPI_INSTALLATION.md -------------------------------------------------------------------------------- /docs/TESTING_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docs/TESTING_SUMMARY.md -------------------------------------------------------------------------------- /docs/WEBSOCKET_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docs/WEBSOCKET_README.md -------------------------------------------------------------------------------- /docs/service-api-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/docs/service-api-openapi.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/pytest.ini -------------------------------------------------------------------------------- /res/announcement.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /res/announcement_saved.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /res/instance_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/res/instance_id.json -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/scripts/publish_announcement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/res/scripts/publish_announcement.py -------------------------------------------------------------------------------- /res/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/res/social.png -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/run_tests.sh -------------------------------------------------------------------------------- /src/langbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/__init__.py -------------------------------------------------------------------------------- /src/langbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/__main__.py -------------------------------------------------------------------------------- /src/langbot/libs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/LICENSE -------------------------------------------------------------------------------- /src/langbot/libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/README.md -------------------------------------------------------------------------------- /src/langbot/libs/coze_server_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/coze_server_api/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/coze_server_api/client.py -------------------------------------------------------------------------------- /src/langbot/libs/dify_service_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/dify_service_api/README.md -------------------------------------------------------------------------------- /src/langbot/libs/dify_service_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/dify_service_api/__init__.py -------------------------------------------------------------------------------- /src/langbot/libs/dify_service_api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/dify_service_api/v1/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/dify_service_api/v1/client.py -------------------------------------------------------------------------------- /src/langbot/libs/dify_service_api/v1/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/dify_service_api/v1/client_test.py -------------------------------------------------------------------------------- /src/langbot/libs/dify_service_api/v1/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/dify_service_api/v1/errors.py -------------------------------------------------------------------------------- /src/langbot/libs/dingtalk_api/EchoHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/dingtalk_api/EchoHandler.py -------------------------------------------------------------------------------- /src/langbot/libs/dingtalk_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/dingtalk_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/dingtalk_api/api.py -------------------------------------------------------------------------------- /src/langbot/libs/dingtalk_api/dingtalkevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/dingtalk_api/dingtalkevent.py -------------------------------------------------------------------------------- /src/langbot/libs/official_account_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/official_account_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/official_account_api/api.py -------------------------------------------------------------------------------- /src/langbot/libs/official_account_api/oaevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/official_account_api/oaevent.py -------------------------------------------------------------------------------- /src/langbot/libs/qq_official_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/qq_official_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/qq_official_api/api.py -------------------------------------------------------------------------------- /src/langbot/libs/qq_official_api/qqofficialevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/qq_official_api/qqofficialevent.py -------------------------------------------------------------------------------- /src/langbot/libs/slack_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/slack_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/slack_api/api.py -------------------------------------------------------------------------------- /src/langbot/libs/slack_api/slackevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/slack_api/slackevent.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/LICENSE -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/README.md -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/__init__.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/api/chatroom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/api/chatroom.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/api/downloadpai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/api/downloadpai.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/api/friend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/api/friend.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/api/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/api/login.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/api/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/api/message.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/api/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/api/user.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/client.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/util/http_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/util/http_util.py -------------------------------------------------------------------------------- /src/langbot/libs/wechatpad_api/util/terminal_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wechatpad_api/util/terminal_printer.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_ai_bot_api/WXBizMsgCrypt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_ai_bot_api/WXBizMsgCrypt3.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_ai_bot_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_ai_bot_api/api.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_ai_bot_api/ierror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_ai_bot_api/ierror.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_ai_bot_api/wecombotevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_ai_bot_api/wecombotevent.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_api/WXBizMsgCrypt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_api/WXBizMsgCrypt3.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/wecom_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_api/api.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_api/ierror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_api/ierror.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_api/wecomevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_api/wecomevent.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_customer_service_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/libs/wecom_customer_service_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_customer_service_api/api.py -------------------------------------------------------------------------------- /src/langbot/libs/wecom_customer_service_api/wecomcsevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/libs/wecom_customer_service_api/wecomcsevent.py -------------------------------------------------------------------------------- /src/langbot/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/group.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/apikeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/apikeys.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/files.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/knowledge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/knowledge/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/knowledge/base.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/knowledge/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/knowledge/external.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/logs.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/pipelines/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/pipelines/pipelines.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/pipelines/websocket_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/pipelines/websocket_chat.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/platform/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/platform/adapters.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/platform/bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/platform/bots.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/plugins.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/provider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/provider/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/provider/models.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/provider/requesters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/provider/requesters.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/resources/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/resources/mcp.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/stats.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/system.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/user.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/webhook_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/webhook_mgmt.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/groups/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/groups/webhooks.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/controller/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/controller/main.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/apikey.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/bot.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/external_kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/external_kb.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/knowledge.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/mcp.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/model.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/pipeline.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/user.py -------------------------------------------------------------------------------- /src/langbot/pkg/api/http/service/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/api/http/service/webhook.py -------------------------------------------------------------------------------- /src/langbot/pkg/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/command/cmdmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/command/cmdmgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/command/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/command/operator.py -------------------------------------------------------------------------------- /src/langbot/pkg/command/operators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/command/operators/delc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/command/operators/delc.py -------------------------------------------------------------------------------- /src/langbot/pkg/command/operators/last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/command/operators/last.py -------------------------------------------------------------------------------- /src/langbot/pkg/command/operators/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/command/operators/list.py -------------------------------------------------------------------------------- /src/langbot/pkg/command/operators/next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/command/operators/next.py -------------------------------------------------------------------------------- /src/langbot/pkg/command/operators/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/command/operators/prompt.py -------------------------------------------------------------------------------- /src/langbot/pkg/command/operators/resend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/command/operators/resend.py -------------------------------------------------------------------------------- /src/langbot/pkg/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/config/impls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/config/impls/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/config/impls/json.py -------------------------------------------------------------------------------- /src/langbot/pkg/config/impls/pymodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/config/impls/pymodule.py -------------------------------------------------------------------------------- /src/langbot/pkg/config/impls/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/config/impls/yaml.py -------------------------------------------------------------------------------- /src/langbot/pkg/config/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/config/manager.py -------------------------------------------------------------------------------- /src/langbot/pkg/config/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/config/model.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/core/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/app.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/boot.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/bootutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/core/bootutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/bootutils/config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/bootutils/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/bootutils/deps.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/bootutils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/bootutils/files.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/bootutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/bootutils/log.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/entities.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migration.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m001_sensitive_word_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m001_sensitive_word_migration.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m002_openai_config_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m002_openai_config_migration.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m003_anthropic_requester_cfg_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m003_anthropic_requester_cfg_completion.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m004_moonshot_cfg_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m004_moonshot_cfg_completion.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m005_deepseek_cfg_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m005_deepseek_cfg_completion.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m006_vision_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m006_vision_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m007_qcg_center_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m007_qcg_center_url.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m008_ad_fixwin_config_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m008_ad_fixwin_config_migrate.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m009_msg_truncator_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m009_msg_truncator_cfg.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m010_ollama_requester_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m010_ollama_requester_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m011_command_prefix_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m011_command_prefix_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m012_runner_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m012_runner_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m013_http_api_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m013_http_api_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m014_force_delay_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m014_force_delay_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m015_gitee_ai_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m015_gitee_ai_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m016_dify_service_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m016_dify_service_api.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m017_dify_api_timeout_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m017_dify_api_timeout_params.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m018_xai_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m018_xai_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m019_zhipuai_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m019_zhipuai_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m020_wecom_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m020_wecom_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m021_lark_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m021_lark_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m022_lmstudio_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m022_lmstudio_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m023_siliconflow_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m023_siliconflow_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m024_discord_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m024_discord_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m025_gewechat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m025_gewechat_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m026_qqofficial_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m026_qqofficial_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m027_wx_official_account_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m027_wx_official_account_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m028_aliyun_requester_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m028_aliyun_requester_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m029_dashscope_app_api_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m029_dashscope_app_api_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m030_lark_config_cmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m030_lark_config_cmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m031_dingtalk_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m031_dingtalk_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m032_volcark_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m032_volcark_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m033_dify_thinking_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m033_dify_thinking_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m034_gewechat_file_url_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m034_gewechat_file_url_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m035_wxoa_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m035_wxoa_mode.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m036_wxoa_loading_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m036_wxoa_loading_message.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m037_mcp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m037_mcp_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m038_tg_dingtalk_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m038_tg_dingtalk_markdown.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m039_modelscope_cfg_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m039_modelscope_cfg_completion.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/migrations/m040_ppio_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/migrations/m040_ppio_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/note.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/notes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/core/notes/n001_classic_msgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/notes/n001_classic_msgs.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/notes/n002_selection_mode_on_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/notes/n002_selection_mode_on_windows.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/notes/n003_print_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/notes/n003_print_version.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/stage.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/stages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/core/stages/build_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/stages/build_app.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/stages/genkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/stages/genkeys.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/stages/load_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/stages/load_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/stages/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/stages/migrate.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/stages/setup_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/stages/setup_logger.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/stages/show_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/stages/show_notes.py -------------------------------------------------------------------------------- /src/langbot/pkg/core/taskmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/core/taskmgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/discover/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/discover/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/discover/engine.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/entity/errors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/entity/errors/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/errors/platform.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/errors/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/errors/provider.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/apikey.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/base.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/bot.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/bstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/bstorage.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/mcp.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/metadata.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/model.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/pipeline.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/plugin.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/rag.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/user.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/vector.py -------------------------------------------------------------------------------- /src/langbot/pkg/entity/persistence/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/entity/persistence/webhook.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/database.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/databases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/databases/postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/databases/postgresql.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/databases/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/databases/sqlite.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/mgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migration.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm001_migrate_v3_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm001_migrate_v3_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm002_combine_quote_msg_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm002_combine_quote_msg_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm003_n8n_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm003_n8n_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm004_rag_kb_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm004_rag_kb_uuid.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm005_pipeline_remove_cot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm005_pipeline_remove_cot_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm006_langflow_api_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm006_langflow_api_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm007_plugin_install_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm007_plugin_install_source.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm008_plugin_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm008_plugin_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm009_pipeline_extension_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm009_pipeline_extension_preferences.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm010_pipeline_multi_knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm010_pipeline_multi_knowledge_base.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm011_dify_base_prompt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm011_dify_base_prompt_config.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm012_pipeline_extensions_enable_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm012_pipeline_extensions_enable_all.py -------------------------------------------------------------------------------- /src/langbot/pkg/persistence/migrations/dbm013_knowledge_base_updated_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/persistence/migrations/dbm013_knowledge_base_updated_at.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/bansess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/bansess/bansess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/bansess/bansess.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/cntfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/cntfilter/cntfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/cntfilter/cntfilter.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/cntfilter/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/cntfilter/entities.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/cntfilter/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/cntfilter/filter.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/cntfilter/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/cntfilter/filters/baiduexamine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/cntfilter/filters/baiduexamine.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/cntfilter/filters/banwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/cntfilter/filters/banwords.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/cntfilter/filters/cntignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/cntfilter/filters/cntignore.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/controller.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/entities.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/longtext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/longtext/longtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/longtext/longtext.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/longtext/strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/longtext/strategies/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/longtext/strategies/forward.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/longtext/strategies/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/longtext/strategies/image.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/longtext/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/longtext/strategy.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/msgtrun/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/msgtrun/msgtrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/msgtrun/msgtrun.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/msgtrun/truncator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/msgtrun/truncator.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/msgtrun/truncators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/msgtrun/truncators/round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/msgtrun/truncators/round.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/pipelinemgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/pipelinemgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/pool.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/preproc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/preproc/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/preproc/preproc.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/process/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/process/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/process/handler.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/process/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/process/handlers/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/process/handlers/chat.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/process/handlers/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/process/handlers/command.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/process/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/process/process.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/ratelimit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/ratelimit/algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/ratelimit/algo.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/ratelimit/algos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/ratelimit/algos/fixedwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/ratelimit/algos/fixedwin.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/ratelimit/ratelimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/ratelimit/ratelimit.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/respback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/respback/respback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/respback/respback.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/resprule/entities.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/resprule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/resprule/resprule.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/resprule/rule.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/rules/atbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/resprule/rules/atbot.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/rules/prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/resprule/rules/prefix.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/rules/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/resprule/rules/random.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/resprule/rules/regexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/resprule/rules/regexp.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/stage.py -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/wrapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/pipeline/wrapper/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/pipeline/wrapper/wrapper.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/platform/botmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/botmgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/logger.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/aiocqhttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/aiocqhttp.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/aiocqhttp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/aiocqhttp.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/dingtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/dingtalk.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/dingtalk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/dingtalk.svg -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/dingtalk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/dingtalk.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/discord.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/discord.svg -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/discord.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/discord.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/kook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/kook.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/kook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/kook.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/kook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/kook.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/lark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/lark.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/lark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/lark.svg -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/lark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/lark.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/gewechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/gewechat.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/gewechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/gewechat.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/gewechat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/gewechat.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/nakuru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/nakuru.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/nakuru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/nakuru.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/nakuru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/nakuru.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/qqbotpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/qqbotpy.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/qqbotpy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/qqbotpy.svg -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/legacy/qqbotpy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/legacy/qqbotpy.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/line.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/line.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/line.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/line.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/officialaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/officialaccount.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/officialaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/officialaccount.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/officialaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/officialaccount.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/onebot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/onebot.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/qqofficial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/qqofficial.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/qqofficial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/qqofficial.svg -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/qqofficial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/qqofficial.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/slack.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/slack.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/slack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/slack.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/telegram.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/telegram.svg -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/telegram.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/telegram.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/websocket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/websocket.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/websocket_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/websocket_adapter.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/websocket_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/websocket_manager.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wechatpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wechatpad.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wechatpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wechatpad.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wechatpad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wechatpad.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wecom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wecom.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wecom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wecom.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wecom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wecom.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wecombot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wecombot.png -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wecombot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wecombot.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wecombot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wecombot.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wecomcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wecomcs.py -------------------------------------------------------------------------------- /src/langbot/pkg/platform/sources/wecomcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/sources/wecomcs.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/platform/webhook_pusher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/platform/webhook_pusher.py -------------------------------------------------------------------------------- /src/langbot/pkg/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/plugin/__init__.py -------------------------------------------------------------------------------- /src/langbot/pkg/plugin/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/plugin/connector.py -------------------------------------------------------------------------------- /src/langbot/pkg/plugin/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/plugin/handler.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/__init__.py: -------------------------------------------------------------------------------- 1 | """OpenAI 接口处理及会话管理相关""" 2 | -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/entities.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/errors.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/modelmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/modelmgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requester.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requester.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/302ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/302ai.png -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/302aichatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/302aichatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/302aichatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/302aichatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/anthropic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/anthropic.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/anthropicmsgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/anthropicmsgs.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/anthropicmsgs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/anthropicmsgs.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/bailian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/bailian.png -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/bailianchatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/bailianchatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/bailianchatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/bailianchatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/chatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/chatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/chatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/chatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/compshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/compshare.png -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/compsharechatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/compsharechatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/compsharechatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/compsharechatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/deepseek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/deepseek.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/deepseekchatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/deepseekchatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/deepseekchatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/deepseekchatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/gemini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/gemini.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/geminichatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/geminichatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/geminichatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/geminichatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/giteeai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/giteeai.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/giteeaichatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/giteeaichatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/giteeaichatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/giteeaichatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/jiekouai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/jiekouai.png -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/jiekouaichatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/jiekouaichatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/jiekouaichatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/jiekouaichatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/lmstudio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/lmstudio.webp -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/lmstudiochatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/lmstudiochatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/lmstudiochatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/lmstudiochatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/modelscope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/modelscope.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/modelscopechatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/modelscopechatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/modelscopechatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/modelscopechatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/moonshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/moonshot.png -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/moonshotchatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/moonshotchatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/moonshotchatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/moonshotchatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/newapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/newapi.png -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/newapichatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/newapichatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/newapichatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/newapichatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/ollama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/ollama.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/ollamachat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/ollamachat.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/ollamachat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/ollamachat.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/openai.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/openrouter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/openrouter.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/openrouterchatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/openrouterchatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/openrouterchatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/openrouterchatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/ppio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/ppio.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/ppiochatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/ppiochatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/ppiochatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/ppiochatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/qhaigc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/qhaigc.png -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/qhaigcchatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/qhaigcchatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/qhaigcchatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/qhaigcchatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/shengsuanyun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/shengsuanyun.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/shengsuanyun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/shengsuanyun.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/shengsuanyun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/shengsuanyun.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/siliconflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/siliconflow.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/siliconflowchatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/siliconflowchatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/siliconflowchatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/siliconflowchatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/tokenpony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/tokenpony.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/tokenpony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/tokenpony.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/tokenponychatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/tokenponychatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/volcark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/volcark.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/volcarkchatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/volcarkchatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/volcarkchatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/volcarkchatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/xai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/xai.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/xaichatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/xaichatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/xaichatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/xaichatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/zhipuai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/zhipuai.svg -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/zhipuaichatcmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/zhipuaichatcmpl.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/requesters/zhipuaichatcmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/requesters/zhipuaichatcmpl.yaml -------------------------------------------------------------------------------- /src/langbot/pkg/provider/modelmgr/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/modelmgr/token.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/runner.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runners/cozeapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/runners/cozeapi.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runners/dashscopeapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/runners/dashscopeapi.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runners/difysvapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/runners/difysvapi.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runners/langflowapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/runners/langflowapi.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runners/localagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/runners/localagent.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runners/n8nsvapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/runners/n8nsvapi.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/runners/tboxapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/runners/tboxapi.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/session/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/provider/session/sessionmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/session/sessionmgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/provider/tools/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/tools/loader.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/tools/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/provider/tools/loaders/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/tools/loaders/mcp.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/tools/loaders/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/tools/loaders/plugin.py -------------------------------------------------------------------------------- /src/langbot/pkg/provider/tools/toolmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/provider/tools/toolmgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/rag/knowledge/base.py -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/rag/knowledge/external.py -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/kbmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/rag/knowledge/kbmgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/services/base_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/rag/knowledge/services/base_service.py -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/services/chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/rag/knowledge/services/chunker.py -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/services/embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/rag/knowledge/services/embedder.py -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/services/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/rag/knowledge/services/parser.py -------------------------------------------------------------------------------- /src/langbot/pkg/rag/knowledge/services/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/rag/knowledge/services/retriever.py -------------------------------------------------------------------------------- /src/langbot/pkg/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/storage/mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/storage/mgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/storage/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/storage/provider.py -------------------------------------------------------------------------------- /src/langbot/pkg/storage/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/storage/providers/localstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/storage/providers/localstorage.py -------------------------------------------------------------------------------- /src/langbot/pkg/storage/providers/s3storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/storage/providers/s3storage.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/constants.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/funcschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/funcschema.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/image.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/importutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/importutil.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/logcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/logcache.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/paths.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/pkgmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/pkgmgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/platform.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/proxy.py -------------------------------------------------------------------------------- /src/langbot/pkg/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/utils/version.py -------------------------------------------------------------------------------- /src/langbot/pkg/vector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/vector/mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/vector/mgr.py -------------------------------------------------------------------------------- /src/langbot/pkg/vector/vdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/vector/vdb.py -------------------------------------------------------------------------------- /src/langbot/pkg/vector/vdbs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/pkg/vector/vdbs/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/vector/vdbs/chroma.py -------------------------------------------------------------------------------- /src/langbot/pkg/vector/vdbs/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/vector/vdbs/milvus.py -------------------------------------------------------------------------------- /src/langbot/pkg/vector/vdbs/pgvector_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/vector/vdbs/pgvector_db.py -------------------------------------------------------------------------------- /src/langbot/pkg/vector/vdbs/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/pkg/vector/vdbs/qdrant.py -------------------------------------------------------------------------------- /src/langbot/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/langbot/templates/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/components.yaml -------------------------------------------------------------------------------- /src/langbot/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/config.yaml -------------------------------------------------------------------------------- /src/langbot/templates/default-pipeline-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/default-pipeline-config.json -------------------------------------------------------------------------------- /src/langbot/templates/legacy/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/legacy/command.json -------------------------------------------------------------------------------- /src/langbot/templates/legacy/pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/legacy/pipeline.json -------------------------------------------------------------------------------- /src/langbot/templates/legacy/platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/legacy/platform.json -------------------------------------------------------------------------------- /src/langbot/templates/legacy/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/legacy/provider.json -------------------------------------------------------------------------------- /src/langbot/templates/legacy/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/legacy/system.json -------------------------------------------------------------------------------- /src/langbot/templates/metadata/pipeline/ai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/metadata/pipeline/ai.yaml -------------------------------------------------------------------------------- /src/langbot/templates/metadata/pipeline/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/metadata/pipeline/output.yaml -------------------------------------------------------------------------------- /src/langbot/templates/metadata/pipeline/safety.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/metadata/pipeline/safety.yaml -------------------------------------------------------------------------------- /src/langbot/templates/metadata/pipeline/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/metadata/pipeline/trigger.yaml -------------------------------------------------------------------------------- /src/langbot/templates/metadata/sensitive-words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/src/langbot/templates/metadata/sensitive-words.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | # Config unit tests 2 | -------------------------------------------------------------------------------- /tests/unit_tests/config/test_env_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/config/test_env_override.py -------------------------------------------------------------------------------- /tests/unit_tests/config/test_webhook_display_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/config/test_webhook_display_prefix.py -------------------------------------------------------------------------------- /tests/unit_tests/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pipeline/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/pipeline/conftest.py -------------------------------------------------------------------------------- /tests/unit_tests/pipeline/test_bansess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/pipeline/test_bansess.py -------------------------------------------------------------------------------- /tests/unit_tests/pipeline/test_pipelinemgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/pipeline/test_pipelinemgr.py -------------------------------------------------------------------------------- /tests/unit_tests/pipeline/test_ratelimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/pipeline/test_ratelimit.py -------------------------------------------------------------------------------- /tests/unit_tests/pipeline/test_resprule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/pipeline/test_resprule.py -------------------------------------------------------------------------------- /tests/unit_tests/pipeline/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/pipeline/test_simple.py -------------------------------------------------------------------------------- /tests/unit_tests/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | # Plugin connector unit tests 2 | -------------------------------------------------------------------------------- /tests/unit_tests/plugin/test_plugin_component_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/plugin/test_plugin_component_filtering.py -------------------------------------------------------------------------------- /tests/unit_tests/plugin/test_plugin_list_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/plugin/test_plugin_list_sorting.py -------------------------------------------------------------------------------- /tests/unit_tests/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/storage/test_storage_provider_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/tests/unit_tests/storage/test_storage_provider_selection.py -------------------------------------------------------------------------------- /web/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_API_BASE_URL=http://localhost:5300 2 | -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/.lintstagedrc.json -------------------------------------------------------------------------------- /web/.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/.prettierrc.mjs -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/README.md -------------------------------------------------------------------------------- /web/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/components.json -------------------------------------------------------------------------------- /web/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/eslint.config.mjs -------------------------------------------------------------------------------- /web/next: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/next.config.ts -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/package.json -------------------------------------------------------------------------------- /web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/postcss.config.mjs -------------------------------------------------------------------------------- /web/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/public/file.svg -------------------------------------------------------------------------------- /web/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/public/globe.svg -------------------------------------------------------------------------------- /web/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/public/next.svg -------------------------------------------------------------------------------- /web/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/public/vercel.svg -------------------------------------------------------------------------------- /web/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/public/window.svg -------------------------------------------------------------------------------- /web/src/app/assets/langbot-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/assets/langbot-logo.webp -------------------------------------------------------------------------------- /web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/favicon.ico -------------------------------------------------------------------------------- /web/src/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/global.css -------------------------------------------------------------------------------- /web/src/app/home/bots/BotDetailDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/BotDetailDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/bots/botConfig.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/botConfig.module.css -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-card/BotCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-card/BotCard.tsx -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-card/BotCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-card/BotCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-card/botCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-card/botCard.module.css -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-form/BotForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-form/BotForm.tsx -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-form/ChooseEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-form/ChooseEntity.ts -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-log/BotLogManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-log/BotLogManager.ts -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-log/view/BotLogCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-log/view/BotLogCard.tsx -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-log/view/BotLogListComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-log/view/BotLogListComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/bots/components/bot-log/view/botLog.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/components/bot-log/view/botLog.module.css -------------------------------------------------------------------------------- /web/src/app/home/bots/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/bots/page.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/api-integration-dialog/ApiIntegrationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/api-integration-dialog/ApiIntegrationDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/dynamic-form/DynamicFormComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/dynamic-form/DynamicFormComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/dynamic-form/DynamicFormItemComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/dynamic-form/DynamicFormItemComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/dynamic-form/DynamicFormItemConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/dynamic-form/DynamicFormItemConfig.ts -------------------------------------------------------------------------------- /web/src/app/home/components/dynamic-form/N8nAuthFormComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/dynamic-form/N8nAuthFormComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/home-sidebar/HomeSidebar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/home-sidebar/HomeSidebar.module.css -------------------------------------------------------------------------------- /web/src/app/home/components/home-sidebar/HomeSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/home-sidebar/HomeSidebar.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/home-sidebar/HomeSidebarChild.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/home-sidebar/HomeSidebarChild.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/home-sidebar/sidbarConfigList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/home-titlebar/HomeTitleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/home-titlebar/HomeTitleBar.tsx -------------------------------------------------------------------------------- /web/src/app/home/components/home-titlebar/HomeTittleBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/home-titlebar/HomeTittleBar.module.css -------------------------------------------------------------------------------- /web/src/app/home/components/password-change-dialog/PasswordChangeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/components/password-change-dialog/PasswordChangeDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/KBDetailDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/KBDetailDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/external-kb-card/ExternalKBCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/external-kb-card/ExternalKBCard.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/external-kb-card/ExternalKBCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/external-kb-card/ExternalKBCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/external-kb-form/ExternalKBForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/external-kb-form/ExternalKBForm.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-card/KBCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-card/KBCard.module.css -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-card/KBCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-card/KBCard.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-card/KBCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-card/KBCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-docs/FileUploadZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-docs/FileUploadZone.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-docs/KBDoc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-docs/KBDoc.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-docs/documents/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-docs/documents/columns.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-docs/documents/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-docs/documents/data-table.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-form/ChooseEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-form/ChooseEntity.ts -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-form/KBForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-form/KBForm.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-retrieve/ExternalKBRetrieve.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-retrieve/ExternalKBRetrieve.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-retrieve/KBRetrieve.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-retrieve/KBRetrieve.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/components/kb-retrieve/KBRetrieveGeneric.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/components/kb-retrieve/KBRetrieveGeneric.tsx -------------------------------------------------------------------------------- /web/src/app/home/knowledge/knowledgeBase.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/knowledgeBase.module.css -------------------------------------------------------------------------------- /web/src/app/home/knowledge/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/knowledge/page.tsx -------------------------------------------------------------------------------- /web/src/app/home/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/layout.module.css -------------------------------------------------------------------------------- /web/src/app/home/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/layout.tsx -------------------------------------------------------------------------------- /web/src/app/home/models/LLMConfig.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/LLMConfig.module.css -------------------------------------------------------------------------------- /web/src/app/home/models/component/ChooseRequesterEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/ChooseRequesterEntity.ts -------------------------------------------------------------------------------- /web/src/app/home/models/component/ICreateEmbeddingField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/ICreateEmbeddingField.ts -------------------------------------------------------------------------------- /web/src/app/home/models/component/ICreateLLMField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/ICreateLLMField.ts -------------------------------------------------------------------------------- /web/src/app/home/models/component/embedding-card/EmbeddingCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/embedding-card/EmbeddingCard.module.css -------------------------------------------------------------------------------- /web/src/app/home/models/component/embedding-card/EmbeddingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/embedding-card/EmbeddingCard.tsx -------------------------------------------------------------------------------- /web/src/app/home/models/component/embedding-card/EmbeddingCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/embedding-card/EmbeddingCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/models/component/embedding-form/EmbeddingForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/embedding-form/EmbeddingForm.tsx -------------------------------------------------------------------------------- /web/src/app/home/models/component/llm-card/LLMCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/llm-card/LLMCard.module.css -------------------------------------------------------------------------------- /web/src/app/home/models/component/llm-card/LLMCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/llm-card/LLMCard.tsx -------------------------------------------------------------------------------- /web/src/app/home/models/component/llm-card/LLMCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/llm-card/LLMCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/models/component/llm-form/LLMForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/component/llm-form/LLMForm.tsx -------------------------------------------------------------------------------- /web/src/app/home/models/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/models/page.tsx -------------------------------------------------------------------------------- /web/src/app/home/page.tsx: -------------------------------------------------------------------------------- 1 | export default function Home() { 2 | return
; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/app/home/pipelines/PipelineDetailDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/PipelineDetailDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/debug-dialog/AtBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/debug-dialog/AtBadge.tsx -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/debug-dialog/DebugDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/debug-dialog/DebugDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/debug-dialog/ImagePreviewDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/debug-dialog/ImagePreviewDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/pipeline-card/PipelineCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/pipeline-card/PipelineCard.tsx -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/pipeline-card/PipelineCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/pipeline-card/PipelineCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/pipeline-card/pipelineCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/pipeline-card/pipelineCard.module.css -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/pipeline-extensions/PipelineExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/pipeline-extensions/PipelineExtension.tsx -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/pipeline-form/PipelineFormComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/pipeline-form/PipelineFormComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/pipelines/components/pipeline-form/pipelineFormStyle.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/components/pipeline-form/pipelineFormStyle.module.css -------------------------------------------------------------------------------- /web/src/app/home/pipelines/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/page.tsx -------------------------------------------------------------------------------- /web/src/app/home/pipelines/pipelineConfig.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/pipelines/pipelineConfig.module.css -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-installed/PluginCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-installed/PluginCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-installed/PluginComponentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-installed/PluginComponentList.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-installed/PluginInstalledComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-installed/PluginInstalledComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-installed/plugin-card/PluginCardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-installed/plugin-card/PluginCardComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-installed/plugin-form/PluginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-installed/plugin-form/PluginForm.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-installed/plugin-readme/PluginReadme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-installed/plugin-readme/PluginReadme.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-market/plugin-market-card/PluginMarketCardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-market/plugin-market-card/PluginMarketCardComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-market/plugin-market-card/PluginMarketCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-market/plugin-market-card/PluginMarketCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/plugins/components/plugin-sort/PluginSortDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/components/plugin-sort/PluginSortDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/mcp-server/MCPCardVO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/mcp-server/MCPCardVO.ts -------------------------------------------------------------------------------- /web/src/app/home/plugins/mcp-server/MCPServerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/mcp-server/MCPServerComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/mcp-server/mcp-card/MCPCardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/mcp-server/mcp-card/MCPCardComponent.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/mcp-server/mcp-form/MCPDeleteConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/mcp-server/mcp-form/MCPDeleteConfirmDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/mcp-server/mcp-form/MCPFormDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/mcp-server/mcp-form/MCPFormDialog.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/page.tsx -------------------------------------------------------------------------------- /web/src/app/home/plugins/plugins.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/home/plugins/plugins.module.css -------------------------------------------------------------------------------- /web/src/app/infra/basic-component/create-card-component/CreateCardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/basic-component/create-card-component/CreateCardComponent.tsx -------------------------------------------------------------------------------- /web/src/app/infra/basic-component/create-card-component/createCartComponent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/basic-component/create-card-component/createCartComponent.module.css -------------------------------------------------------------------------------- /web/src/app/infra/entities/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/entities/api/index.ts -------------------------------------------------------------------------------- /web/src/app/infra/entities/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/entities/common.ts -------------------------------------------------------------------------------- /web/src/app/infra/entities/form/dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/entities/form/dynamic.ts -------------------------------------------------------------------------------- /web/src/app/infra/entities/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/entities/message/index.ts -------------------------------------------------------------------------------- /web/src/app/infra/entities/pipeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/entities/pipeline/index.ts -------------------------------------------------------------------------------- /web/src/app/infra/entities/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/entities/plugin/index.ts -------------------------------------------------------------------------------- /web/src/app/infra/http/BackendClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/http/BackendClient.ts -------------------------------------------------------------------------------- /web/src/app/infra/http/BaseHttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/http/BaseHttpClient.ts -------------------------------------------------------------------------------- /web/src/app/infra/http/CloudServiceClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/http/CloudServiceClient.ts -------------------------------------------------------------------------------- /web/src/app/infra/http/HttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/http/HttpClient.ts -------------------------------------------------------------------------------- /web/src/app/infra/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/http/README.md -------------------------------------------------------------------------------- /web/src/app/infra/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/http/index.ts -------------------------------------------------------------------------------- /web/src/app/infra/http/requestParam/bots/GetBotLogsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/http/requestParam/bots/GetBotLogsRequest.ts -------------------------------------------------------------------------------- /web/src/app/infra/http/requestParam/bots/GetBotLogsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/http/requestParam/bots/GetBotLogsResponse.ts -------------------------------------------------------------------------------- /web/src/app/infra/websocket/WebSocketClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/infra/websocket/WebSocketClient.ts -------------------------------------------------------------------------------- /web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/layout.tsx -------------------------------------------------------------------------------- /web/src/app/login/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/login/layout.tsx -------------------------------------------------------------------------------- /web/src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/login/page.tsx -------------------------------------------------------------------------------- /web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/page.tsx -------------------------------------------------------------------------------- /web/src/app/register/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/register/layout.tsx -------------------------------------------------------------------------------- /web/src/app/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/register/page.tsx -------------------------------------------------------------------------------- /web/src/app/reset-password/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/reset-password/layout.tsx -------------------------------------------------------------------------------- /web/src/app/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/app/reset-password/page.tsx -------------------------------------------------------------------------------- /web/src/components/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/providers/theme-provider.tsx -------------------------------------------------------------------------------- /web/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /web/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /web/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /web/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /web/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/button.tsx -------------------------------------------------------------------------------- /web/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/card.tsx -------------------------------------------------------------------------------- /web/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /web/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /web/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /web/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /web/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/form.tsx -------------------------------------------------------------------------------- /web/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /web/src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /web/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/input.tsx -------------------------------------------------------------------------------- /web/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/label.tsx -------------------------------------------------------------------------------- /web/src/components/ui/language-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/language-selector.tsx -------------------------------------------------------------------------------- /web/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /web/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /web/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /web/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/select.tsx -------------------------------------------------------------------------------- /web/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /web/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /web/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /web/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /web/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /web/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /web/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/table.tsx -------------------------------------------------------------------------------- /web/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /web/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /web/src/components/ui/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/theme-toggle.tsx -------------------------------------------------------------------------------- /web/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /web/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /web/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /web/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /web/src/hooks/useAsyncTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/hooks/useAsyncTask.ts -------------------------------------------------------------------------------- /web/src/i18n/I18nProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/i18n/I18nProvider.tsx -------------------------------------------------------------------------------- /web/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/i18n/index.ts -------------------------------------------------------------------------------- /web/src/i18n/locales/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/i18n/locales/en-US.ts -------------------------------------------------------------------------------- /web/src/i18n/locales/ja-JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/i18n/locales/ja-JP.ts -------------------------------------------------------------------------------- /web/src/i18n/locales/zh-Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/i18n/locales/zh-Hans.ts -------------------------------------------------------------------------------- /web/src/i18n/locales/zh-Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/i18n/locales/zh-Hant.ts -------------------------------------------------------------------------------- /web/src/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/i18next.d.ts -------------------------------------------------------------------------------- /web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/lib/utils.ts -------------------------------------------------------------------------------- /web/src/styles/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/src/styles/github-markdown.css -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langbot-app/LangBot/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/web@0.1.0: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------