[docs]defsync(sort_by:CreatedAtSortMode,*,client:Client,limit:Optional[int]=None,page_token:Optional[str]=None,)->Optional[Union[AiPromptResultsPage,Error]]:"""For text-to-cad prompts, this will always return the STEP file contents as well as the format the user originally requested. This endpoint requires authentication by a Zoo employee. The AI prompts are returned in order of creation, with the most recently created AI prompts first. """# noqa: E501returnsync_detailed(limit=limit,page_token=page_token,sort_by=sort_by,client=client,).parsed
[docs]asyncdefasyncio(sort_by:CreatedAtSortMode,*,client:Client,limit:Optional[int]=None,page_token:Optional[str]=None,)->Optional[Union[AiPromptResultsPage,Error]]:"""For text-to-cad prompts, this will always return the STEP file contents as well as the format the user originally requested. This endpoint requires authentication by a Zoo employee. The AI prompts are returned in order of creation, with the most recently created AI prompts first. """# noqa: E501return(awaitasyncio_detailed(limit=limit,page_token=page_token,sort_by=sort_by,client=client,)).parsed