missing the beginning of the sentence of choice "content"

hi it’s look like got missing word at start text of

json_data[“choices”][0][“message”][“content”]

here the code

def get_text(text):

    #print(text)
    completion = openai.ChatCompletion.create(
      model="gpt-3.5-turbo",
      max_tokens=1024,

      messages=[
            {"role": "system", "content": "synthèse en français ::"},
            {"role": "user", "content": text +" "}

      ]
    )


    print(completion)
    print(completion.choices)

    completion_json = json.dumps(completion)
    json_data = json.loads(completion_json)
    # Access the "content" field of the first message in the "messages" list
    message =  json_data["choices"][0]["message"]["content"].strip()
    # Decode the message using UTF-8 encoding and print it
    print(message)
    print(str(len(message.encode('utf-8').decode('utf-8'))))

    return (message.encode('utf-8').decode('utf-8'))

Welcome to the forum.

What’s your prompt, and what’s the missing word? Is it something we can reproduce on our end?