-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use Azure Openai Realtime API in this #2
Comments
on it! |
Looks like Azure OpenAI doesn't support WebRTC yet |
Thanks, Can you try it with Websocket?
…On Tue, 24 Dec 2024, 7:16 am Cameron King, ***@***.***> wrote:
Looks like Azure OpenAI doesn't support WebRTC yet
—
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A56HLWSBH7TWVSN4K2YRLSL2HC7YRAVCNFSM6AAAAABUDBHD72VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKNRQGU2DINRXGE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
@ihuzaifashoukat Yeah, I can try to do a clone using websocket. In meantime I found this one https://github.com/Azure-Samples/aoai-realtime-audio-sdk |
Thanks, I need nextjs example I have tried these but doesn't work In
nextjs architecture.
…On Fri, 27 Dec 2024, 12:54 am Cameron King, ***@***.***> wrote:
@ihuzaifashoukat <https://github.com/ihuzaifashoukat> Yeah, I can try to
do a clone using websocket. In meantime I found this one
https://github.com/Azure-Samples/aoai-realtime-audio-sdk
—
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A56HLWTDMUUAX7MNPYYWV632HRNIPAVCNFSM6AAAAABUDBHD72VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKNRTGA3DCNJWHE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Does anyone know, when the Azure Openai with WebRTC support available? |
I'm also looking for it, I also hope to use Azure api for voice chat webiste. I am wondering if it's possible to use https://github.com/Azure-Samples/aoai-realtime-audio-sdk as the backend? And deploy frontend like this repo? |
Hey,
I am using azure openai services and i tried adding those details but failed to do it was getting 400 error Below is the api route example.
`import { NextResponse } from 'next/server';
import { WebSocket } from 'ws';
export async function POST(request) {
try {
const apiKey = process.env.OPENAI_API_KEY;
if (!apiKey) {
throw new Error('OPENAI_API_KEY is not set');
}
}import { NextResponse } from 'next/server';
import { WebSocket } from 'ws';
export async function POST(request) {
try {
const apiKey = process.env.OPENAI_API_KEY;
if (!apiKey) {
throw new Error('OPENAI_API_KEY is not set');
}
}`
The text was updated successfully, but these errors were encountered: