managarten/picture/apps/landing/AI_MODELS_COLLECTION_SETUP.md
Till-JS c712a2504a feat: integrate uload and picture, unify package naming
- Add uload project with apps/web structure
  - Reorganize from flat to monorepo structure
  - Remove PocketBase binary and local data
  - Update to pnpm and @uload/web namespace

- Add picture project to monorepo
  - Remove embedded git repository

- Unify all package names to @{project}/{app} schema:
  - @maerchenzauber/* (was @storyteller/*)
  - @manacore/* (was manacore-*, manacore)
  - @manadeck/* (was web, backend, manadeck)
  - @memoro/* (was memoro-web, landing, memoro)
  - @picture/* (already unified)
  - @uload/web

- Add convenient dev scripts for all apps:
  - pnpm dev:{project}:web
  - pnpm dev:{project}:landing
  - pnpm dev:{project}:mobile
  - pnpm dev:{project}:backend

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-25 04:00:36 +01:00

1.4 KiB

AI Models Collection - Created!

📦 What was created:

1. Collection Schema (config.ts)

  • Full model specifications
  • Performance metrics (speed, quality, reliability)
  • Pricing & availability
  • Technical specs (resolution, parameters, architecture)
  • Capabilities (text-to-image, inpainting, etc.)
  • Strengths, weaknesses, best use cases
  • Comparison metrics
  • Example images
  • Related content

2. Example Models

  • FLUX Schnell (fast, general purpose)
  • FLUX Dev (professional, balanced)

🚀 Next Steps:

  1. Add more models:

    • FLUX Pro
    • SDXL
    • Custom models
  2. Create utils (utils/aiModels.ts)

  3. Create pages:

    • /models - Index with comparison
    • /models/[slug] - Detail pages
  4. Create components:

    • ModelCard
    • ComparisonTable
    • PerformanceChart

📝 Model Template:

---
name: "Model Name"
slug: "model-slug"
provider: "Provider Name"
description: "Short description"
type: "text-to-image"
category: "general"
availability: "available"
featured: true
pricing:
  free: false
  pro: true
  enterprise: true
performance:
  speed: "~5 seconds"
  speedScore: 4
  quality: "excellent"
  qualityScore: 4
strengths:
  - "Strength 1"
  - "Strength 2"
bestFor:
  - "Use case 1"
language: "en"
lastUpdated: 2025-01-15T00:00:00.000Z
---

Content here...

Collection is ready! Implement utils, pages, and components as needed. 🎉