RonanMcGovern commited on
Commit
7ca777a
1 Parent(s): bbd4627

fix prompt

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -35,7 +35,7 @@ Out-of-the-box inference scripts are available for purchase [here](https://treli
35
  ```
36
  B_FUNC, E_FUNC = "You have access to the following functions. Use them if required:\n\n", "\n\n"
37
  B_INST, E_INST = "[INST] ", " [/INST]" #Llama style
38
- prompt = f"{E_INST}{B_FUNC}{functionList.strip()}{E_FUNC}{B_INST}{user_prompt.strip()}{E_INST}\n\n"
39
  ```
40
 
41
  ## Sample Prompt and Response:
 
35
  ```
36
  B_FUNC, E_FUNC = "You have access to the following functions. Use them if required:\n\n", "\n\n"
37
  B_INST, E_INST = "[INST] ", " [/INST]" #Llama style
38
+ prompt = f"{B_INST}{B_FUNC}{functionList.strip()}{E_FUNC}{user_prompt.strip()}{E_INST}\n\n"
39
  ```
40
 
41
  ## Sample Prompt and Response: