Structure

ar-ai-assistant/

├── ar-ai-assistant.php
├── readme.txt
├── uninstall.php

├── assets/
│ ├── css/
│ │ └── chatbot.css
│ ├── js/
│ │ └── chatbot.js
│ └── images/
│ └── logo.svg

├── includes/
│ ├── admin/
│ │ ├── cache-status.php
│ │ ├── save-api-key.php
│ │ └── settings-page.php
│ │
│ ├── ajax/
│ │ └── chatbot-reponse.php
│ │
│ ├── category/
│ │ ├── fetch-9-11-virtual-exhibit.php
│ │ ├── fetch-battle-briefs.php
│ │ ├── fetch-book-talks.php
│ │ ├── fetch-changing-world.php
│ │ ├── fetch-cold-war.php
│ │ ├── fetch-founding-the-nation.php
│ │ ├── fetch-gallery-talks.php
│ │ └── fetch-global-war.php
│ │ ├── fetch-history-hikes.php
│ │ └── fetch-history-talks.php
│ │ └── fetch-leadership.php
│ │ ├── fetch-medal-of-honor-experience.php
│ │ └── fetch-nation-overseas.php
│ │ └── fetch-nisei-soldier-experience.php
│ │ ├── fetch-preserving-the-nation.php
│ │ └── fetch-soldiers-stories.php
│ │ └── fetch-special-exhibition-gallery.php
│ │ ├── …
│ │ └── …
│ │ └── …
│ │
│ ├── helpers/
│ │ ├── cache.php
│ │ ├── detect-category.php
│ │ ├── router.php
│ │ └── translate-html.php
│ │
│ ├──languages/
│ │ ├──language-instructions.php
│ │
│ ├──prompts/
│ │ ├── battle-briefs.php
│ │ ├── book-talk.php
│ │ ├── gallery-talk.php
│ │ ├── history-hikes.php
│ │ ├── history-talk.php
│ │ ├── leadership.php
│ ├── chat-ui.php

Logo

AI Assistant