-
Notifications
You must be signed in to change notification settings - Fork 113
/
faq.html
64 lines (50 loc) · 2.65 KB
/
faq.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
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Voice Assistant</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- nav bar -->
<nav class="nav">
<h1><a class="logo">VOICE.py</a></h1>
<div class="nav-right">
<h1><a href="">Home</a></h1>
<h1><a href="">Features</a></h1>
<h1><a href="contact.html">Contact</a></h1>
<h1><a href="">About</a></h1>
<h1><a href="faq.html">FAQ</a></h1>
</div>
</nav>
<!-- nav bar end -->
<section class="faq" id="faq">
<br>
<center><h3 class="heading-primary">Frequently Asked Questions</h3></center>
<br>
<div class="faq-item">
<div class="faq-question">What is VOICE.py? <span class="arrow">▼</span></div>
<div class="faq-answer">VOICE.py is a Python-based virtual assistant using Gemini AI, offering voice recognition, text-to-speech, and access to weather updates, news, and Wikipedia. Its customizable web interface ensures a seamless user experience.</div>
</div>
<div class="faq-item">
<div class="faq-question">How do I use the assistant?<span class="arrow">▼</span></div>
<div class="faq-answer">Click on the "Speak to the Assistant" button and ask your question.</div>
</div>
<div class="faq-item">
<div class="faq-question">How does the voice recognition feature work? <span class="arrow">▼</span></div>
<div class="faq-answer">The voice recognition feature uses the SpeechRecognition library to convert spoken words into text, which is then processed to execute commands.</div>
</div>
<div class="faq-item">
<div class="faq-question"> What APIs are integrated into VOICE.py? <span class="arrow">▼</span></div>
<div class="faq-answer">VOICE.py integrates several APIs, including weather APIs for real-time updates, news APIs for fetching the latest headlines, and Wikipedia API for retrieving information.</div>
</div>
<div class="faq-item">
<div class="faq-question">Can I use the assistant offline? <span class="arrow">▼</span></div>
<div class="faq-answer">The assistant's core features, such as voice recognition and text-to-speech, may require an internet connection for optimal performance. However, some functionalities might work offline depending on how they are implemented</div>
</div>
</section>
</div>
<script src="./script.js"></script>
</body>
</html>