chore: commit all changes

This commit is contained in:
LIghtJUNction
2026-04-02 21:23:23 +08:00
parent 0883437c1a
commit 868c81bbc7
200 changed files with 2876 additions and 21922 deletions

View File

@@ -229,7 +229,7 @@ astrbot run --debug --log-level DEBUG
## Next Steps
- [Configure LLM Providers](../providers/llm.md)
- [Install Plugins](../use/plugin.md)
- [Use Skills](../use/skills.md)
- [Configure LLM Providers](providers/llm.md)
- [Install Plugins](use/plugin.md)
- [Use Skills](use/skills.md)
- [Deploy to Server](./deploy/astrbot/docker.md)

View File

@@ -470,7 +470,7 @@ def extract_title(content: str, source_path: str) -> str:
def build_language_index(language: str, page_names: set[str]) -> str:
config = LANG_CONFIG[language]
lines = [config["index_title"], "", config["index_intro"], ""]
lines: list[str] = [config["index_title"], "", config["index_intro"], ""]
for label, page_name in config["index_links"]:
if page_name in page_names:
@@ -481,7 +481,7 @@ def build_language_index(language: str, page_names: set[str]) -> str:
def build_home_page(language: str) -> str:
config = LANG_CONFIG[language]
lines = ["# AstrBot Wiki", "", config["home_intro"], ""]
lines: list[str] = ["# AstrBot Wiki", "", config["home_intro"], ""]
for label, target in config["home_links"]:
lines.append(f"- [{label}]({target})")
return normalize_content("\n".join(lines))

View File

@@ -229,7 +229,7 @@ astrbot run --debug --log-level DEBUG
## 下一步
- [配置模型提供商](../providers/llm.md)
- [安装插件](../use/plugin.md)
- [使用技能](../use/skills.md)
- [配置模型提供商](providers/llm.md)
- [安装插件](use/plugin.md)
- [使用技能](use/skills.md)
- [部署到服务器](./deploy/astrbot/docker.md)