diff --git a/_posts/2024-12-27-synthetic-data-intro.md b/_posts/2024-12-27-synthetic-data-intro.md index f7f0030..330f1d1 100644 --- a/_posts/2024-12-27-synthetic-data-intro.md +++ b/_posts/2024-12-27-synthetic-data-intro.md @@ -73,11 +73,12 @@ resp = client.chat.completions.create( messages=[ { "role": "user", - "content": "Write a potential user query to a chatbot for the following product:\n\\`{{ data }}\\`" + "content": """Write a potential user query to a chatbot for the following product: + {{ "{{ data " }}}}""", }, ], response_model=SyntheticQuestion, - context={"data": client_description}, + context={"data": client_description}, ) print(resp.chain_of_thought)