Spaces:
Running
Running
Update prompts.py
Browse files- prompts.py +2 -1
prompts.py
CHANGED
|
@@ -15,13 +15,14 @@ pinned: true
|
|
| 15 |
license: mit
|
| 16 |
---
|
| 17 |
|
| 18 |
-
The above code block must be at the very top of the README.md file for Huggingface Spaces
|
| 19 |
|
| 20 |
"""
|
| 21 |
|
| 22 |
TOOLS="""
|
| 23 |
Your tools are:
|
| 24 |
- action: CREATE_FILE action_input=PATH/TO/FILE #creates a file in a repository at the path and file name, always start repo files at the root: ./FILE_NAME
|
|
|
|
| 25 |
- action: COMPLETE action_input=COMPLETE #return complete when task is complete, or if you have more than 2 errors in HISTORY
|
| 26 |
|
| 27 |
Example:
|
|
|
|
| 15 |
license: mit
|
| 16 |
---
|
| 17 |
|
| 18 |
+
The above EXAMPLE code block must be at the very top of the README.md file for Huggingface Spaces, adjust the content to suit your space
|
| 19 |
|
| 20 |
"""
|
| 21 |
|
| 22 |
TOOLS="""
|
| 23 |
Your tools are:
|
| 24 |
- action: CREATE_FILE action_input=PATH/TO/FILE #creates a file in a repository at the path and file name, always start repo files at the root: ./FILE_NAME
|
| 25 |
+
- action: READ_FILE action_input=PATH/TO/FILE #reads a file in a repository at the path and file name, always start repo files at the root directory: ./FILE_NAME
|
| 26 |
- action: COMPLETE action_input=COMPLETE #return complete when task is complete, or if you have more than 2 errors in HISTORY
|
| 27 |
|
| 28 |
Example:
|