Skip to content

Commit

Permalink
fix: 4.10 尖括号
Browse files Browse the repository at this point in the history
  • Loading branch information
camera-2018 committed Apr 20, 2023
1 parent bcb2431 commit bfdc3f1
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -737,18 +737,18 @@ AutoGPT 所使用的 Commands 接口中,就有很大一部分接口用于实

- Google Search: "google",

- args: "input": "<search>"
- args: "input": `"<search>"`
- 返回网页关键信息与网址的匹配列表
- Browse Website: "browse_website",

- args:

- "url": "<url>",
- "question": "<what_you_want_to_find_on_website>"
- "url": `"<url>"`,
- "question": `"<what_you_want_to_find_on_website>"`
- 返回网址中与 question 相关的匹配文段(通过 embedding 搜索)
- Read file: "read_file",

- args: "file": "<file>"
- args: "file": `"<file>"`
- 读取文件并解析文本数据

这些访问接口由程序集暴露给 GPT ,将知觉系统中实际使用的微观处理器隐藏在了系统框架之下
Expand Down Expand Up @@ -836,10 +836,10 @@ Generative Agents 的知觉设计:关联性难题
对于如上数据库信息,我们对于以视图为单位进行整理,将其转化为 prompt 输入

'Commands:\n'
'1. Google Search: "google", args: "input": "<search>"\n'
'2. Browse Website: "browse_website", args: "url": "<url>", "question": "<what_you_want_to_find_on_website>"\n'
'3. Start GPT Agent: "start_agent", args: "name": "<name>", "task": "<short_task_desc>", "prompt": "<prompt>"\n'
'4. Message GPT Agent: "message_agent", args: "key": "<key>", "message": "<message>"\n'
'1. Google Search: "google", args: "input": `"<search>"`\n'
'2. Browse Website: "browse_website", args: "url": `"<url>"`, "question": `"<what_you_want_to_find_on_website>"`\n'
'3. Start GPT Agent: "start_agent", args: "name": `"<name>"`, "task": `"<short_task_desc>"`, "prompt": `"<prompt>"`\n'
'4. Message GPT Agent: "message_agent", args: "key": `"<key>"`, "message": `"<message>"`\n'
'5. List GPT Agents: "list_agents", args: \n'

- 对于对数据库进行感知的任务,我们需要进一步设计 Pormpt 驱动 Agent 的行为
Expand Down

0 comments on commit bfdc3f1

Please sign in to comment.