Is it possible to define tools both in a Prompt and in the Responses API call?
I’m doing something like this:
...await openai.responses.create({
...
tools: [...]
prompt: ...,
...
});
But it seems that the tools in the API call replace the ones in the Prompt instead of combining.