O1 model, displaying intermediate reasoning

Hi, I am quite new to API’s so please be understanding. So below code works fine (when my key is in as well as real instructions). I want to add code to output intermediate reasoning as well, so each time o1 model “reasons” it produces some output that it does not save or display but it is still there in the background. What do I need to add to my code to see that output displayed as it produces it?

from openai import OpenAI

def main():
    client = OpenAI(api_key='mykey') 

    instructions_string = """sample instructions
    """

    while True:
        comment = input("Enter your  question: ")
        response = client.chat.completions.create(
            model="o1",  
            messages=[
                {"role": "system", "content": instructions_string},
                {"role": "user", "content": comment}
            ]
        )

      
        answer = dict(response)['choices'][0].message.content
        print(f"Bot's response: {answer}")

        
        repeat = input("Would you like to ask another question? (yes/no): ").lower()
        if repeat != 'yes':
            print("Goodbye!")
            break

if __name__ == "__main__":
  main()```

Why don’t you ask ChatGPT?

No luck with chat gpt unfortunately, the suggestions it provided me with were not what I am after. I also looked trough forum and documentation. I want to see that output that is passed in from turn 1 to turn 2 and to turn 3 (see image)

“o” models do not produce any reasoning output on the API.