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.
- {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/METADATA +26 -38
- {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/RECORD +110 -103
- {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/WHEEL +1 -1
- fastapi_gen/cli.py +25 -0
- fastapi_gen/config.py +13 -0
- fastapi_gen/prompts.py +104 -0
- fastapi_gen/template/VARIABLES.md +3 -0
- fastapi_gen/template/cookiecutter.json +3 -0
- fastapi_gen/template/hooks/post_gen_project.py +82 -10
- fastapi_gen/template/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +1 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/Makefile +11 -5
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/.env.example +21 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/admin.py +4 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/assistant.py +156 -3
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/crewai_assistant.py +46 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/deepagents_assistant.py +40 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/langchain_assistant.py +39 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/langgraph_assistant.py +39 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/prompts.py +105 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/pydantic_deep_assistant.py +55 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/__init__.py +6 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/antv_chart.py +146 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/ask_user_tool.py +39 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/code_execution.py +294 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/agents/tools/map_tool.py +102 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/deps.py +4 -4
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/api/routes/v1/__init__.py +25 -9
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/core/config.py +20 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/db/models/__init__.py +5 -3
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/__init__.py +6 -6
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/repositories/user.py +22 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/schemas/__init__.py +1 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/admin.py +15 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/agent_session.py +81 -2
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/app/services/rag/reranker.py +5 -4
- fastapi_gen/template/{{cookiecutter.project_slug}}/backend/pyproject.toml +19 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.dev.yml +44 -3
- fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.prod.yml +3 -3
- fastapi_gen/template/{{cookiecutter.project_slug}}/docker-compose.yml +39 -3
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/e2e/chat.spec.ts +4 -5
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/eslint.config.mjs +13 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/en.json +34 -15
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/messages/pl.json +34 -15
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/package.json +8 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/layout.tsx +65 -59
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(auth)/magic-link-sent/page.tsx +12 -6
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/conversations/page.tsx +10 -11
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/layout.tsx +23 -16
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/page.tsx +32 -17
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/ratings/page.tsx +107 -85
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/stripe-events/page.tsx +15 -29
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/admin/users/page.tsx +8 -7
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/credits/page.tsx +24 -26
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/invoices/page.tsx +10 -12
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/page.tsx +30 -28
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/payment-methods/page.tsx +10 -12
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/subscription/page.tsx +10 -12
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/billing/usage/page.tsx +22 -30
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/dashboard/page.tsx +238 -86
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/kb/[id]/page.tsx +404 -161
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/kb/page.tsx +55 -11
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/orgs/page.tsx +28 -28
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/rag/page.tsx +14 -4
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/account/page.tsx +15 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/appearance/page.tsx +11 -10
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/layout.tsx +10 -11
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/notifications/page.tsx +23 -23
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/(dashboard)/settings/profile/page.tsx +108 -83
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/[locale]/page.tsx +196 -239
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/globals.css +1 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/app/layout.tsx +2 -10
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/admin/admin-nav.tsx +4 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/forgot-password-form.tsx +30 -16
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/index.ts +2 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/login-form.tsx +33 -17
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/register-form.tsx +24 -16
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/auth/reset-password-form.tsx +17 -9
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chart-message.tsx +14 -4
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-container.tsx +94 -138
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-controls.tsx +585 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-empty-state.tsx +84 -15
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-input.tsx +1 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/conversation-sidebar.tsx +41 -26
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/file-preview-panel.tsx +1 -3
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/index.ts +1 -3
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/map-leaflet.tsx +72 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/map-message.tsx +39 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/message-list.tsx +1 -2
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/tool-approval-dialog.tsx +0 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/tool-call-card.tsx +273 -13
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/dashboard/page-hero.tsx +151 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/kb/kb-list.tsx +143 -123
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/command-palette.tsx +16 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/header.tsx +7 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/mobile-tab-bar.tsx +2 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/layout/sidebar.tsx +7 -18
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/final-cta.tsx +62 -24
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/footer-config.ts +8 -4
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/hero.tsx +1 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/marketing-footer.tsx +69 -25
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/marketing/pricing-teaser.tsx +140 -62
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/seo/json-ld.tsx +0 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/settings/settings-nav.tsx +4 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/index.ts +2 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/ui/question-prompt.tsx +257 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/index.ts +3 -1
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/hooks/use-chat.ts +28 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/types/chat.ts +40 -0
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/chat-settings.tsx +0 -139
- fastapi_gen/template/{{cookiecutter.project_slug}}/frontend/src/components/chat/kb-selector.tsx +0 -166
- {fastapi_fullstack-0.2.9.dist-info → fastapi_fullstack-0.2.11.dist-info}/entry_points.txt +0 -0
- {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.
|
|
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/
|
|
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/
|
|
304
|
+
<img src="https://raw.githubusercontent.com/vstorm-co/full-stack-ai-agent-template/main/assets/new2/rag_demo.gif" alt="File upload & 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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
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
|
-

|
|
430
418
|
|
|
431
419
|
### Observability
|
|
432
420
|
|