|
<< Click to Display Table of Contents >> Navigation: 3. Script Language > AI - Artificial Intelligence Commands > AIC. - Artificial Intelligence Command > AIC Commands |
Short Name: gct
Get response content
AIC_GetContent
Parameter |
Type |
Required |
Description |
None |
Void |
No |
No parameters required |
Type |
Description |
String |
Returns the content of the last API response |
·Retrieves text content from the most recent API call
·Returns empty string if no response available
·Use after AIC call to get generated content
' Get content from last responseDim content As Stringcontent = AIC_GetContent()Print "Response: " & content
Retrieves the text content from the most recent OpenAI API response.