Tools & Resources

๐Ÿš€ AI Engineer Journey โ€” Plan & Trackers ยท Hope AI โ€” ML & DS Course

All tools below are free unless marked otherwise.

๐Ÿค– AI / LLM APIs

ToolPurposeLink
Anthropic APIClaude โ€” primary AI modelconsole.anthropic.com
OpenAI APIGPT models (free $5 credit)platform.openai.com
OllamaRun LLMs locally (free, offline)ollama.ai
Hugging FaceModels, datasets, free hostinghuggingface.co
Google AI StudioGemini API (free tier)aistudio.google.com

๐Ÿ—ƒ๏ธ Vector Databases

ToolPurposeNotes
ChromaDBLocal vector databaseEasiest to start with
FAISSFacebook's vector searchFast, open-source
PineconeManaged vector DBFree tier available
WeaviateOpen-source vector searchGood for production

๐Ÿฆœ Agent Frameworks

ToolPurposeWhen to Use
LangChainAgent orchestrationWeek 9โ€“10
LangGraphStateful multi-agentWeek 10
CrewAIRole-based multi-agentWeek 10
MCP SDKModel Context ProtocolWeek 11

๐Ÿ“Š Observability & Evals

ToolPurposeWhen to Use
LangSmithTracing, evals, monitoringWeek 6+
RAGASRAG evaluation metricsWeek 6
HeliconeLLM cost + latency trackingWeek 14

๐Ÿ’ป Development Tools

ToolPurpose
Python 3.10+Primary language
FastAPIBuild REST APIs for AI apps
DockerContainerize AI apps
GitHub ActionsCI/CD basics
Google ColabFree GPU for fine-tuning
Hugging Face SpacesFree app hosting

๐Ÿ“š Learning Resources

ResourceTopicLink
Anthropic DocsClaude API, MCP, tool usedocs.anthropic.com
NeetCodeDSA practice (Blind 75, NeetCode 150)neetcode.io
LeetCodeDSA problemsleetcode.com
PrampFree mock interviewspramp.com
dev.to / HashnodeFree blog publishingdev.to
Papers With CodeAI research papers + codepaperswithcode.com

๐ŸŽ“ Key Papers to Read

PaperWhenWhy
Attention Is All You NeedMonth 1Transformer foundation
Constitutional AI (Anthropic)Month 4Essential for Anthropic interview
RLHF PaperMonth 4Understanding model alignment
RAG Paper (Lewis et al.)Month 1-2Foundational RAG understanding
ReAct PaperMonth 3Agent reasoning framework