slovanos commited on
Commit
0fe1eb2
1 Parent(s): 3dc4f73

Update README.md. Fix vLLM code example.

Browse files

Fix vLLM code example. Remove the f-string to allow it to work with the format method call on the subsequent list comprehension.

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -158,7 +158,7 @@ prompts = [
158
  "What is 291 - 150?",
159
  "How much wood would a woodchuck chuck if a woodchuck could chuck wood?",
160
  ]
161
- prompt_template=f'''<|system|>
162
  {system_message}</s>
163
  <|user|>
164
  {prompt}</s>
 
158
  "What is 291 - 150?",
159
  "How much wood would a woodchuck chuck if a woodchuck could chuck wood?",
160
  ]
161
+ prompt_template='''<|system|>
162
  {system_message}</s>
163
  <|user|>
164
  {prompt}</s>