ai-virtual-assistant/py/templates/faq.html

59 lines
2.1 KiB
HTML
Raw Normal View History

2024-09-16 17:08:09 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/styles.css">
<title>AI Assistant - FAQ</title>
</head>
<body>
<header>
<ul>
<li>
<a href="/">
<img src="/static/img/logo.png" alt="logo.png">
</a>
</li>
<li>
<a href="/documentation">Documentation</a>
</li>
<li>
<a href="/faq">FAQ</a>
</li>
</ul>
</header>
2024-09-16 17:08:09 +02:00
<section id="faq">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<h3>What is this AI assistant for?</h3>
<p>This AI assistant helps you with various tasks such as answering questions, generating text, and even helping with code or writing tasks.</p>
</div>
<div class="faq-item">
<h3>How does the AI assistant work?</h3>
<p>The assistant uses machine learning algorithms to understand your input and provide contextually relevant answers or generate content based on the task you've described.</p>
</div>
<div class="faq-item">
<h3>Can I trust the answers given by the AI assistant?</h3>
<p>While the AI strives to give accurate and helpful answers, it is important to verify critical information, especially for complex or sensitive queries.</p>
</div>
<div class="faq-item">
<h3>What kind of questions can I ask?</h3>
<p>You can ask a wide range of questions from simple factual queries to more complex requests like generating creative writing or code snippets.</p>
</div>
<div class="faq-item">
<h3>Is my data secure when using the AI assistant?</h3>
<p>We take privacy seriously. Your data is handled according to our privacy policy, ensuring that any personal information shared is securely processed and not misused.</p>
</div>
</section>
</body>
</html>