Hello I’m trying to run tactic 1 but I am getting this error
NameError Traceback (most recent call last)
Cell In[6], line 18
1 text = f"“”
2 You should express what you want a model to do by \
3 providing instructions that are as clear and \
(…)
11 more detailed and relevant outputs.
12 “”"
13 prompt = f"“”
14 Summarize the text delimited by triple backticks \
15 into a single sentence.
16 {text}
17 “”"
—> 18 response = get_completion(prompt)
19 print(response)
NameError: name ‘get_completion’ is not defined