admin管理员组文章数量:1345134
Suppose we have the following scenario, for a quiz application that uses the OpenAI realtime API:
- using the realtime API, a browser client is connected via WebRTC
- a function tool named
get_next_question
is used by the agent to retrieve the next quiz question to ask, together with its correct answer and explanation - when the agent wants to retrieve the next question, it requests a function tool call the client reacts by sending an API request to a server (e.g. the same from which it retrieves the ephemeral API key)
Now, the server can’t simply answer to the client with the question and solution, as that would leak the data. Instead, what I would like to be able to do is the server would receive the session_id and call_id in the payload from the client, and it would send the output directly to the OpenAI API.
Is this possible?
This example from the docs shows a client sending a conversation item with the function call output using the data channel, but I haven’t been able to figure out whether there’s a way to simply send the item using the conversation API.
For example, I would like to do something like this:
// client
dc.addEventListener("message", (e: MessageEvent) => {
// Realtime server events appear here!
const data = JSON.parse(e.data);
const type = data.type;
console.log(data);
switch (type) {
case "response.function_call_arguments.done":
const functionName = data.name;
const callId = data.call_id;
const functionArgs = JSON.parse(data.arguments);
handleFunctionCall({ functionName, functionArgs, callId, dc });
// ...
}
const handleFunctionCall = (args) => {
// use axios to send a request to a server endpoint, passing all the arguments
}
# server
def receive_function_call(session_id, call_id, *args):
# ... business logic ...
# somehow send a conversation item to the session containing the function call output
本文标签: openai apiSend function call output from server in WebRTC connectionStack Overflow
版权声明:本文标题:openai api - Send function call output from server in WebRTC connection - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743758841a2533997.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论