Has anyone managed to make Custom GPTs retrieve remote files to be used for the code interpreter? E.g. retrieve a fresh csv from an endpoint declared in the Openapi.json schema for function calls?
code interpreter has blocked remote requests
function calls return responses as strings that it can use in the code interpreter (very inefficient!)
Thankful for any pointers that can help me build my use-case
Ideally I’d like the Custom GPT function call to retrieve the file and store it as a file that it can access from the code interpreter. Any thoughts or examples of achieving this?
Saving files to disk within an OpenAI custom action can be a bit complex, as these actions typically operate within a constrained environment where direct filesystem access (like writing a file to disk) may not be supported or could be limited. The capabilities for file handling in an OpenAI custom action depend on the specific environment and permissions set by OpenAI.