fastapi-fullstack 0.2.9__py3-none-any.whl → 0.2.11__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/METADATA +26 -38
  2. {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/RECORD +110 -103
  3. {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/WHEEL +1 -1
  4. fastapi_gen/cli.py +25 -0
  5. fastapi_gen/config.py +13 -0
  6. fastapi_gen/prompts.py +104 -0
  7. fastapi_gen/template/VARIABLES.md +3 -0
  8. fastapi_gen/template/cookiecutter.json +3 -0
  9. fastapi_gen/template/hooks/post_gen_project.py +82 -10
  10. fastapi_gen/template/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +1 -1
  11. fastapi_gen/template/{{cookiecutter.project_slug}}/Makefile +11 -5
  12. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.env.example +21 -0
  13. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/admin.py +4 -0
  14. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/assistant.py +156 -3
  15. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/crewai_assistant.py +46 -1
  16. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/deepagents_assistant.py +40 -1
  17. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/langchain_assistant.py +39 -0
  18. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/langgraph_assistant.py +39 -0
  19. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/prompts.py +105 -1
  20. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/pydantic_deep_assistant.py +55 -1
  21. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/__init__.py +6 -0
  22. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/antv_chart.py +146 -0
  23. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/ask_user_tool.py +39 -0
  24. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/code_execution.py +294 -0
  25. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/map_tool.py +102 -0
  26. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/deps.py +4 -4
  27. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/__init__.py +25 -9
  28. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/config.py +20 -0
  29. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/__init__.py +5 -3
  30. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/__init__.py +6 -6
  31. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/user.py +22 -0
  32. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/__init__.py +1 -1
  33. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/admin.py +15 -1
  34. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/agent_session.py +81 -2
  35. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/rag/reranker.py +5 -4
  36. fastapi_gen/template/{{cookiecutter.project_slug}}/backend/pyproject.toml +19 -0
  37. fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.dev.yml +44 -3
  38. fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.prod.yml +3 -3
  39. fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.yml +39 -3
  40. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/chat.spec.ts +4 -5
  41. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/eslint.config.mjs +13 -0
  42. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/en.json +34 -15
  43. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/pl.json +34 -15
  44. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/package.json +8 -1
  45. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/layout.tsx +65 -59
  46. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/magic-link-sent/page.tsx +12 -6
  47. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/conversations/page.tsx +10 -11
  48. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/layout.tsx +23 -16
  49. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/page.tsx +32 -17
  50. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/ratings/page.tsx +107 -85
  51. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/stripe-events/page.tsx +15 -29
  52. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/users/page.tsx +8 -7
  53. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/credits/page.tsx +24 -26
  54. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/invoices/page.tsx +10 -12
  55. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/page.tsx +30 -28
  56. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/payment-methods/page.tsx +10 -12
  57. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/subscription/page.tsx +10 -12
  58. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/usage/page.tsx +22 -30
  59. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/dashboard/page.tsx +238 -86
  60. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/kb/[id]/page.tsx +404 -161
  61. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/kb/page.tsx +55 -11
  62. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/orgs/page.tsx +28 -28
  63. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/rag/page.tsx +14 -4
  64. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/account/page.tsx +15 -1
  65. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/appearance/page.tsx +11 -10
  66. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/layout.tsx +10 -11
  67. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/notifications/page.tsx +23 -23
  68. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/profile/page.tsx +108 -83
  69. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/page.tsx +196 -239
  70. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/globals.css +1 -1
  71. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/layout.tsx +2 -10
  72. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/admin/admin-nav.tsx +4 -0
  73. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/forgot-password-form.tsx +30 -16
  74. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/index.ts +2 -0
  75. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/login-form.tsx +33 -17
  76. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/register-form.tsx +24 -16
  77. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/reset-password-form.tsx +17 -9
  78. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chart-message.tsx +14 -4
  79. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-container.tsx +94 -138
  80. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-controls.tsx +585 -0
  81. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-empty-state.tsx +84 -15
  82. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-input.tsx +1 -1
  83. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/conversation-sidebar.tsx +41 -26
  84. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/file-preview-panel.tsx +1 -3
  85. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/index.ts +1 -3
  86. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/map-leaflet.tsx +72 -0
  87. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/map-message.tsx +39 -0
  88. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-list.tsx +1 -2
  89. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/tool-approval-dialog.tsx +0 -1
  90. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/tool-call-card.tsx +273 -13
  91. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/dashboard/page-hero.tsx +151 -0
  92. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/kb/kb-list.tsx +143 -123
  93. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/command-palette.tsx +16 -0
  94. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/header.tsx +7 -1
  95. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/mobile-tab-bar.tsx +2 -0
  96. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/sidebar.tsx +7 -18
  97. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/final-cta.tsx +62 -24
  98. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/footer-config.ts +8 -4
  99. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/hero.tsx +1 -1
  100. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/marketing-footer.tsx +69 -25
  101. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/pricing-teaser.tsx +140 -62
  102. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/seo/json-ld.tsx +0 -1
  103. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/settings/settings-nav.tsx +4 -0
  104. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/index.ts +2 -0
  105. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/question-prompt.tsx +257 -0
  106. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/index.ts +3 -1
  107. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-chat.ts +28 -0
  108. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/chat.ts +40 -0
  109. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-settings.tsx +0 -139
  110. fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/kb-selector.tsx +0 -166
  111. {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/entry_points.txt +0 -0
  112. {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-fullstack
3
- Version: 0.2.9
3
+ Version: 0.2.11
4
4
  Summary: Full-stack FastAPI + Next.js template generator with PydanticAI/LangChain agents, WebSocket streaming, 20+ enterprise integrations, and Logfire/LangSmith observability. Ship AI apps fast. CLI tool to generate production-ready FastAPI + Next.js projects with AI agents, auth, and observability.
5
5
  Project-URL: Homepage, https://github.com/vstorm-co/full-stack-ai-agent-template
6
6
  Project-URL: Documentation, https://github.com/vstorm-co/full-stack-ai-agent-template#readme
@@ -46,7 +46,7 @@ Requires-Dist: pymdown-extensions>=10.20; extra == 'docs'
46
46
  Description-Content-Type: text/markdown
47
47
 
48
48
  <p align="center">
49
- <img src="https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/banner.png" alt="Full-Stack AI Agent Template" width="100%">
49
+ <img src="https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/chat_demo.gif" alt="Live chat web search, tool calls, and chart generation" width="100%">
50
50
  </p>
51
51
 
52
52
  <h1 align="center">Full-Stack AI Agent Template</h1>
@@ -298,22 +298,10 @@ Use `make help` to see all available Makefile shortcuts.
298
298
  <img src="https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/app_start.gif" alt="FastAPI Fullstack Generator Demo">
299
299
  </p>
300
300
 
301
- **Live chat — web search:**
302
-
303
- <p align="center">
304
- <img src="https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/chat/websearchdemo.gif" alt="Agent answering with live web search">
305
- </p>
306
-
307
- **Live chat — chart generation:**
308
-
309
- <p align="center">
310
- <img src="https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/chat/chartdemo.gif" alt="Agent generating an interactive chart">
311
- </p>
312
-
313
301
  **File upload & RAG ingestion:**
314
302
 
315
303
  <p align="center">
316
- <img src="https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/file_uploud_light.gif" alt="File Upload Demo">
304
+ <img src="https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/rag_demo.gif" alt="File upload &amp; RAG ingestion" width="100%">
317
305
  </p>
318
306
 
319
307
  ---
@@ -324,109 +312,109 @@ Use `make help` to see all available Makefile shortcuts.
324
312
 
325
313
  **Landing Page** — Full-page marketing site with hero, features breakdown, testimonials, pricing preview, and FAQ. Generated with the `enable_marketing_site` option.
326
314
 
327
- ![Landing Page](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/landing_page.png)
315
+ ![Landing Page](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/landing_page.png)
328
316
 
329
317
  **Pricing** — Three-tier pricing page (Starter / Pro / Business) with monthly/annual toggle. Pulls live plan data from Stripe when connected; shows template plans otherwise.
330
318
 
331
- ![Pricing](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/pricing.png)
319
+ ![Pricing](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/pricing.png)
332
320
 
333
321
  **Blog** — Engineering blog included out of the box. Posts are MDX files in the repo — no CMS needed. Supports tags, featured posts, and author bylines.
334
322
 
335
- ![Blog](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/blog.png)
323
+ ![Blog](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/blog.png)
336
324
 
337
325
  **Blog Post** — Individual post view with author card, reading time, and tag badges. Content is plain MDX — edit files and redeploy.
338
326
 
339
- ![Blog Post](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/blog_post.png)
327
+ ![Blog Post](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/blog_post.png)
340
328
 
341
329
  ### Auth
342
330
 
343
331
  **Login** — Split-screen login with Google OAuth and email/password. Left panel shows a product pitch with a social proof quote. HTTP-only cookie session on submit.
344
332
 
345
- ![Login](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/login.png)
333
+ ![Login](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/login.png)
346
334
 
347
335
  **Register** — Same split-screen layout as login. Google sign-up and email/password form with confirm-password field and terms acceptance.
348
336
 
349
- ![Register](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/register.png)
337
+ ![Register](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/register.png)
350
338
 
351
339
  ### Dashboard
352
340
 
353
341
  **Dashboard (light mode)** — Workspace overview showing conversation count, knowledge base vector count, recent activity feed, agent tool call stats, active sessions, and team info. Onboarding banner guides new users through setup in under 2 minutes.
354
342
 
355
- ![Dashboard Light](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/dashboard_light.png)
343
+ ![Dashboard Light](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/dashboard_light.png)
356
344
 
357
345
  **Dashboard (dark mode)** — Same dashboard in dark theme. Theme is saved per-device and can be overridden per-workspace in appearance settings.
358
346
 
359
- ![Dashboard Dark](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/dashboard_dark.png)
347
+ ![Dashboard Dark](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/dashboard_dark.png)
360
348
 
361
349
  ### Teams & Organizations
362
350
 
363
351
  **Workspaces** — List of all organizations the user belongs to. Shows plan tier and role for each. Users can switch active workspace or create a new organization.
364
352
 
365
- ![Organizations](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/organizations.png)
353
+ ![Organizations](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/organizations.png)
366
354
 
367
355
  **Team Management** — Organization detail page with workspace profile (name + avatar), member list with roles, and an "Invite teammate" button. Owners and admins can adjust roles inline.
368
356
 
369
- ![Organization Details](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/organizations_details.png)
357
+ ![Organization Details](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/organization_details.png)
370
358
 
371
359
  ### Knowledge Bases
372
360
 
373
361
  **Knowledge Bases** — List of RAG knowledge bases scoped to the current workspace. Each base shows its collection slug. Users can create new bases, toggle which ones are active in chat, and upload documents through the UI.
374
362
 
375
- ![Knowledge Bases](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/knowledge_bases.png)
363
+ ![Knowledge Bases](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/knowledge_bases.png)
376
364
 
377
365
  ### Billing
378
366
 
379
367
  **Billing** — Workspace billing dashboard showing current plan, storage usage (chat attachments + indexed RAG documents), quick links to usage breakdown, invoices, payment methods, and subscription management. "Manage in Stripe" opens the Stripe customer portal.
380
368
 
381
- ![Billing](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/billing.png)
369
+ ![Billing](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/billing.png)
382
370
 
383
371
  ### Profile & Settings
384
372
 
385
373
  **Profile** — Personal info tab: avatar upload, display name, email, and active session list with per-device revoke buttons. Visibility note explains which fields are shown to teammates.
386
374
 
387
- ![Profile](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/profile.png)
375
+ ![Profile](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/profile.png)
388
376
 
389
377
  **Account & Security** — Change password form with strength guidance, "Sign out everywhere" button, and danger zone for permanent account deletion.
390
378
 
391
- ![Account](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/profile_account.png)
379
+ ![Account](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/profile_account.png)
392
380
 
393
381
  **Slash Commands** — Customize the `/command` palette in chat. Toggle built-in commands (`/clear`, `/regen`, `/settings`, `/summarize`, `/explain`) and create custom shortcuts that send a stored prompt with a few keystrokes.
394
382
 
395
- ![Slash Commands](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/profile_commands.png)
383
+ ![Slash Commands](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/profile_commands.png)
396
384
 
397
385
  **Appearance** — Theme switcher (light / dark / system) and brand color picker with four presets: Blue (Stripe/Vercel), Green (healthtech), Red (energetic), Orange (B2C), Violet (Anthropic-style). Brand color updates CSS variables across the entire workspace and is saved per-device.
398
386
 
399
- ![Appearance](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/profile_apperance.png)
387
+ ![Appearance](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/profile_appearance.png)
400
388
 
401
389
  **Notification Preferences** — Per-category notification controls with separate toggles for email and in-app delivery. Categories: Billing, Team activity, Security alerts, and Product updates. Preferences stored locally and synced to the backend via `/users/me/notifications`.
402
390
 
403
- ![Notifications](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/profile_notifications.png)
391
+ ![Notifications](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/profile_notifications.png)
404
392
 
405
393
  ### Admin Panel
406
394
 
407
395
  **Admin Overview** — Workspace-wide metrics (total users, active sessions last 24h, conversation count, MRR) plus a recent activity feed showing all conversations across all users. Requires the `admin` role.
408
396
 
409
- ![Admin Overview](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/admin.png)
397
+ ![Admin Overview](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/admin_overview.png)
410
398
 
411
399
  **User Management** — Full user list with search by email or name. Shows role, status, join date, and an "Inspect" action to impersonate or suspend any user. Pagination built in.
412
400
 
413
- ![Admin Users](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/admin_users.png)
401
+ ![Admin Users](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/admin_users.png)
414
402
 
415
403
  **Conversation Browser** — Browse all conversations across the workspace. Filter by status and owner, sort by any column, open any conversation in a read-only view. Useful for support and quality review.
416
404
 
417
- ![Admin Conversations](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/admin_conversations.png)
405
+ ![Admin Conversations](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/admin_conversations.png)
418
406
 
419
407
  **Message Quality & Ratings** — Aggregated like/dislike feedback on AI responses over the last 30 days. Shows approval rate, daily chart, and a filterable table of individual ratings with optional user comments. Export to CSV.
420
408
 
421
- ![Admin Ratings](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/admin_ratings.png)
409
+ ![Admin Ratings](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/admin_ratings.png)
422
410
 
423
411
  **Stripe Events Log** — Webhook event browser for debugging Stripe billing flows. Lists all received events (type, customer, amount, status, timestamp) and lets admins manually replay any event via the backend `/admin/stripe-events/{id}/replay` endpoint.
424
412
 
425
- ![Stripe Events](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/admin_stripe_events.png)
413
+ ![Stripe Events](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/admin_stripe_events.png)
426
414
 
427
415
  **System Health** — Live readiness dashboard auto-refreshing every 30 seconds. Checks API, Database (PostgreSQL primary), Redis, Vector store, LLM provider, Background worker, and Stripe API. Shows uptime percentage per service.
428
416
 
429
- ![System Health](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new/admin_system_health.png)
417
+ ![System Health](https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/admin_system_health.png)
430
418
 
431
419
  ### Observability
432
420