Projektimi i aplikacioneve të mundësuara nga AI përfshin zgjedhjen e qasjes së duhur ndaj AI-t, trajtimin e karakteristikave unike të AI-t (jo-determinizmi, kosto, vonesa, gabime), dhe projektimin për besueshmëri rreth AI-t në mënyrë të qenësishme të paperfekt. Kombinon inxhinierinë e softuerit me shqyrtime specifike për AI.
Zgjedhja e qasjes ndaj AI-t
→ PROMPTING (LLM APIs) → for most LLM tasks (simplest); good prompts go far
→ RAG → to ground answers in your own/current DATA (reduce hallucination)
→ FINE-TUNING → for specific behavior/style prompting can't achieve
→ TRADITIONAL ML → for structured prediction/classification with data
→ PRE-BUILT services → vision, speech, etc. (don't reinvent)
→ match the approach to the problem (often: prompting + RAG for LLM apps)
