mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
chore: commit all changes
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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))
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user