For AI agents: the complete documentation index is available at /llms.txt, the full documentation bundle is available at /llms-full.txt, and this page is available as Markdown at /guide/start/configuration/phrases.md.
  • 简体中文
  • phrases.toml

    出于趣味性而设计,用来控制在等待 AI 回复消息时显示的文案。放置位置与 models.tomlconfig.toml 相同。

    示例配置如下:

    # mode = "append" 保留内置短语并追加自定义短语。
    # mode = "override" 仅使用下方列出的短语。
    mode = "append"
    
    # order = "random" 每次请求随机选择一条短语。
    # order = "cycle" 按顺序依次循环使用短语。
    order = "random"
    
    phrases = [
      "Reading context",
      "Thinking through it",
      "Checking the edges",
    ]

    我个人使用的是内置默认的提示,而且这个功能实现后我并没有进行测试,如果需要可以尝试使用,如有问题可以开 Issue 进行反馈。

    相关页面: