1. Learn
  2. /
  3. Courses
  4. /
  5. Working with the OpenAI Responses API

Connected

Exercise

Extracting Output Items and Their Contents

When working with OpenAI's Responses API, different item types contain different information. A response object has been created and stored in the variable response. Your task is to loop through the output items and extract specific information based on their type.

Instructions

100 XP
  • Loop through the items in response.output.
  • Check if the item's .type attribute equals 'reasoning', and if so, print 'Found reasoning item'.
  • Check if the item's .type attribute equals 'message', and if so, extract and print the text.