Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

README.md 1.7KB

1234567891011121314151617181920212223242526
  1. 用于让Bot扮演指定角色的聊天插件,触发方法如下:
  2. - `$角色/$role help/帮助` - 打印目前支持的角色列表。
  3. - `$角色/$role <角色名>` - 让AI扮演该角色,角色名支持模糊匹配。
  4. - `$停止扮演` - 停止角色扮演。
  5. 添加自定义角色请在`roles/roles.json`中添加。
  6. (大部分prompt来自https://github.com/rockbenben/ChatGPT-Shortcut/blob/main/src/data/users.tsx)
  7. 以下为例子:
  8. ```json
  9. {
  10. "title": "写作助理",
  11. "description": "As a writing improvement assistant, your task is to improve the spelling, grammar, clarity, concision, and overall readability of the text I provided, while breaking down long sentences, reducing repetition, and providing suggestions for improvement. Please provide only the corrected Chinese version of the text and avoid including explanations. Please treat every message I send later as text content.",
  12. "descn": "作为一名中文写作改进助理,你的任务是改进所提供文本的拼写、语法、清晰、简洁和整体可读性,同时分解长句,减少重复,并提供改进建议。请只提供文本的更正版本,避免包括解释。请把我之后的每一条消息都当作文本内容。",
  13. "wrapper": "内容是:\n\"%s\"",
  14. "remark": "最常使用的角色,用于优化文本的语法、清晰度和简洁度,提高可读性。"
  15. }
  16. ```
  17. - `title`: 角色名。
  18. - `description`: 使用`$role`触发时,使用英语prompt。
  19. - `descn`: 使用`$角色`触发时,使用中文prompt。
  20. - `wrapper`: 用于包装用户消息,可起到强调作用,避免回复离题。
  21. - `remark`: 简短描述该角色,在打印帮助文档时显示。