Step-by-Step Guide to Creating AI Agents Using JavaScript
What is an AI Agent
LLM + TOOLS = AI AGENT
What is LLM?
It is a large neural network which is trained on large amount of data and is used to predict the word or the text given as a input. Example gpt3.0, gemini, etc
Working of LLM
Prompt —> LLM —> Output
LLM does not know what happened after because it is trained at a particular time of data.
Prompt —> LLM —> Tools —> LLM —> Output
What is Langchain