### Example FAQ for Knowledge Base Source: https://help.assistable.ai/beginner-walkthrough/knowledgebase An example of a Question and Answer pair for the knowledge base. FAQs are crucial for improving AI accuracy by providing precise responses to common customer queries. ```plaintext Question: Do you offer free estimates? Answer: Yes, Apex Concrete provides free estimates for all services. ``` -------------------------------- ### Define AI Assistant Identity (Arduino Example) Source: https://help.assistable.ai/beginner-walkthrough/prompting This snippet demonstrates how to define the identity and role of an AI assistant using a prompt. It specifies the assistant's name, purpose, and tone, which guides its behavior in interactions. This is a foundational step for creating a functional AI. ```arduino You are Emma, a receptionist for Apex Concrete. Your role includes answering customer inquiries, qualifying leads, and scheduling appointments. You maintain a professional, approachable, and efficient tone. ``` -------------------------------- ### Correcting Knowledge Base Responses with JSON Source: https://help.assistable.ai/beginner-walkthrough/knowledgebase This example shows how to input corrected responses for specific queries in the knowledge base using a JSON-like format. This is useful for refining AI accuracy when direct Q&A pairs are insufficient. ```json { "Query": "What are your services?", "Answer": "What services do you offer?: We service concrete foundations, concrete driveways, concrete retainer walls, paving, and masonry work." } ``` -------------------------------- ### HTML Structure for AI Call Interface Source: https://help.assistable.ai/chat-ai/ai-chat-widget-beta This HTML code defines the complete front-end structure and styling for the AI Call Interface. It includes elements for the widget container, phone header with avatar and titles, mode selection, phone display, call buttons, and input fields. It is designed to be responsive and visually appealing, utilizing CSS for layout and effects. ```html