import React from 'react'; // FAQ Component const FAQ: React.FC = () => { return (
{/* Main section for FAQs */}

Frequently Asked Questions

{/* Title for the FAQ section */}

Why doesn't my selection in the category dropdown menu apply?

Currently, the dropdown menu for selecting AI models does not retain your choice after a website refresh.

Why is the AI suddenly talking about the weather when I didn't select that option?

The AI is programmed to provide weather information even if you haven't specifically selected the weather option.

Why isn't the online API working?

At the moment, the online APIs for Google and La Plateforme are not operational. However, the OpenAI and Anthropic APIs may still function.

Why is the AI discussing unrelated topics?

Try disabling the AI system prompt settings, as the AI sometimes tends to focus on those topics excessively.

Why isn't the AI responding in the format I specified in the settings?

Please check if the system prompt settings are enabled. If the issue persists, it may be because the AI is unable to fully adhere to the command.

Does this AI have the ability to know my location or search the web?

No, this AI does not possess any capabilities to access your location or browse the web.

Does the AI really work offline?

Yes! Once you download the necessary models, it can operate fully offline, with the exception of the weather API.

Are my messages encrypted?

Unfortunately, not at this time. We recommend keeping your messages as anonymous as possible.

Where is my data saved?

All data, including accounts, settings, and chats, is stored locally on your computer.

Is this a virus?

No, this is not a virus. The warning appears because the application is not officially signed.

); }; export default FAQ; // Exporting the FAQ component