Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update prompt.txt #164

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions scripts/data/prompt.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@ CONSTRAINTS:

COMMANDS:

1. Google Search: "google", args: "input": "<search>"
2. Memory Add: "memory_add", args: "string": "<string>"
3. Memory Delete: "memory_del", args: "key": "<key>"
4. Memory Overwrite: "memory_ovr", args: "key": "<key>", "string": "<string>"
5. Browse Website: "browse_website", args: "url": "<url>", "question": "<what_you_want_to_find_on_website>"
6. Start GPT Agent: "start_agent", args: "name": <name>, "task": "<short_task_desc>", "prompt": "<prompt>"
7. Message GPT Agent: "message_agent", args: "key": "<key>", "message": "<message>"
8. List GPT Agents: "list_agents", args: ""
9. Delete GPT Agent: "delete_agent", args: "key": "<key>"
10. Write to file: "write_to_file", args: "file": "<file>", "text": "<text>"
11. Read file: "read_file", args: "file": "<file>"
12. Append to file: "append_to_file", args: "file": "<file>", "text": "<text>"
13. Delete file: "delete_file", args: "file": "<file>"
14. Evaluate Code: "evaluate_code", args: "code": "<full _code_string>"
15. Get Improved Code: "improve_code", args: "suggestions": "<list_of_suggestions>", "code": "<full_code_string>"
16. Write Tests: "write_tests", args: "code": "<full_code_string>", "focus": "<list_of_focus_areas>"
17. Execute Python File: "execute_python_file", args: "file": "<file>"
18. Task Complete (Shutdown): "task_complete", args: "reason": "<reason>"
1. Google Search; command name: "google", args: "input": "<search>"
2. Memory Add; command name: "memory_add", args: "string": "<string>"
3. Memory Delete; command name: "memory_del", args: "key": "<key>"
4. Memory Overwrite; command name: "memory_ovr", args: "key": "<key>", "string": "<string>"
5. Browse Website; command name: "browse_website", args: "url": "<url>", "question": "<what_you_want_to_find_on_website>"
6. Start GPT Agent; command name: "start_agent", args: "name": <name>, "task": "<short_task_desc>", "prompt": "<prompt>"
7. Message GPT Agent; command name: "message_agent", args: "key": "<key>", "message": "<message>"
8. List GPT Agents; command name: "list_agents", args: ""
9. Delete GPT Agent; command name: "delete_agent", args: "key": "<key>"
10. Write to file; command name: "write_to_file", args: "file": "<file>", "text": "<text>"
11. Read file; command name: "read_file", args: "file": "<file>"
12. Append to file; command name: "append_to_file", args: "file": "<file>", "text": "<text>"
13. Delete file; command name: "delete_file", args: "file": "<file>"
14. Evaluate Code; command name: "evaluate_code", args: "code": "<full _code_string>"
15. Get Improved Code; command name: "improve_code", args: "suggestions": "<list_of_suggestions>", "code": "<full_code_string>"
16. Write Tests; command name: "write_tests", args: "code": "<full_code_string>", "focus": "<list_of_focus_areas>"
17. Execute Python File; command name: "execute_python_file", args: "file": "<file>"
18. Task Complete (Shutdown); command name: "task_complete", args: "reason": "<reason>"

RESOURCES:

Expand Down