LearnAI
Module 18 · Deployment and launch of an AI application (Pro) · Lesson 1/5
← Back to catalog
Task

Where to place an AI application

What hosting options are there? Return JSON {"options": [list of 2+ options], "why": "short"}.

Unlock access to submit solutions for instant AI review.Start for free
Choosing a foundation
💡 A bit of theory

An AI application needs to be hosted somewhere, and there are several options with different trade-offs. Managed platform (turnkey hosting) - simple and fast, the platform takes over the infrastructure, but there is less control and is more expensive at scale; your own server (VPS or cloud) - full control and predictable price, but you set up and maintain it yourself; serverless (functions) - automatically scales and you pay for calls, but there are “cold starts” and limitations. Choice according to your needs: quick start - managed platform; control, privacy, volume - your own server; rare or fluctuating loads - serverless. Rule: choose hosting based on priority - simplicity (managed platform), control (your own server) or auto-scale (serverless); There is no universally best one, there is one that suits the task.

How it's graded · passing score 70

  • 1Valid JSON without text around it30%
  • 2There is an array options and why35%
  • 32+ options: managed platform, own server, serverless - with their compromises35%
Your promptClaude ⌄