-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenAI Realtime API Examples</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
text-align: center;
background: #f5f5f5;
}
h1 {
color: #333;
margin-bottom: 40px;
}
.button-container {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 400px;
margin: 0 auto;
}
a {
display: block;
padding: 15px 20px;
background: #fff;
color: #333;
text-decoration: none;
border-radius: 8px;
border: 1px solid #ddd;
transition: all 0.2s ease;
}
a:hover {
transform: translateY(-2px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<h1>OpenAI Realtime API Examples</h1>
<div class="button-container">
<a href="01-basic-js/">01: Basic Reference Implementation</a>
<a href="02-audio-visualizer/">02: Audio Visualizer</a>
<a href="03-voice-and-text/">03: Voice and Text</a>
<a href="04-transcripts/">04: Transcripts</a>
<a href="05-function-calling/">05: Function Calling</a>
</div>
</body>
</html>