mirror of
https://github.com/langgenius/dify.git
synced 2026-07-15 01:17:04 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: EvanYao826 <155432245+EvanYao826@users.noreply.github.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Tianle <40735546+Tianlel@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yunlu Wen <yunlu.wen@dify.ai> Co-authored-by: zyssyz123 <916125788@qq.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: chariri <w@chariri.moe> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Nian <11332799+Lillian68@users.noreply.github.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Carmen Fernández Ruiz <279459669+zeus1959@users.noreply.github.com> Co-authored-by: wangxiaolei <fatelei@gmail.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: L1nSn0w <l1nsn0w@qq.com> Co-authored-by: Evan <2869018789@qq.com> Co-authored-by: Escape0707 <tothesong@gmail.com> Co-authored-by: Jingyi <jingyi.qi@dify.ai> Co-authored-by: Amr Sherif <140330826+amr-sheriff@users.noreply.github.com> Co-authored-by: ZHOU ZHICHEN <118870511+zhuiguangzhe2003@users.noreply.github.com> Co-authored-by: unknown <EI05187@apwx.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
71 lines
1.9 KiB
YAML
71 lines
1.9 KiB
YAML
site_name: Dify Agent
|
|
site_description: Agent runtime and Agenton composition framework documentation
|
|
strict: true
|
|
|
|
repo_name: langgenius/dify
|
|
repo_url: https://github.com/langgenius/dify
|
|
edit_uri: edit/main/dify-agent/docs/
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Agenton:
|
|
- Overview: agenton/index.md
|
|
- Guide: agenton/guide/index.md
|
|
- Examples: agenton/examples/index.md
|
|
- Dify Agent:
|
|
- Overview: dify-agent/index.md
|
|
- User Manual:
|
|
- Get Started: dify-agent/get-started/index.md
|
|
- Prompt Layer: dify-agent/user-manual/prompt-layer/index.md
|
|
- Execution Context Layer: dify-agent/user-manual/execution-context-layer/index.md
|
|
- Plugin LLM Layer: dify-agent/user-manual/plugin-llm-layer/index.md
|
|
- Plugin Tool Layer: dify-agent/user-manual/plugin-tool-layer/index.md
|
|
- History Layer: dify-agent/user-manual/history-layer/index.md
|
|
- Structured Output Layer: dify-agent/user-manual/structured-output-layer/index.md
|
|
- Operations Guide: dify-agent/guide/index.md
|
|
- Examples: dify-agent/examples/index.md
|
|
|
|
theme:
|
|
name: material
|
|
features:
|
|
- content.code.copy
|
|
- content.tabs.link
|
|
- navigation.indexes
|
|
- navigation.sections
|
|
- navigation.tracking
|
|
- toc.follow
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- attr_list
|
|
- md_in_html
|
|
- pymdownx.details
|
|
- pymdownx.highlight:
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.superfences
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- tables
|
|
|
|
plugins:
|
|
- search
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
paths:
|
|
- src
|
|
options:
|
|
docstring_style: google
|
|
members_order: source
|
|
separate_signature: true
|
|
show_signature_annotations: true
|
|
signature_crossrefs: true
|
|
|
|
watch:
|
|
- src
|
|
- examples
|
|
|
|
hooks:
|
|
- docs/.hooks/main.py
|