-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
16 lines (16 loc) · 740 Bytes
/
index.html
File metadata and controls
16 lines (16 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenAI Realtime Examples</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous" />
</head>
<body class="p-4">
<h1 class="fs-4">Welcome to OpenAI Realtime Examples</h1>
<ul>
<li><a href="websocket-chat.html">WebSocket Chat Example</a></li>
<li><a href="webrtc-chat.html">WebRTC Chat Example (Peer to Peer)</a></li>
</ul>
</body>
</html>