BSBhupendra Singh Negiinknow-python.hashnode.dev·Feb 5 · 2 min readPython Inner WorkingWhen you write Python code in a .py file, Python does not directly execute that file line by line. Instead: Python reads your .py file. It compiles the source code into bytecode. That bytecode is then executed by the Python Virtual Machine (PVM). ...00
BSBhupendra Singh Negiinbuild-ai-agent.hashnode.dev·Jan 20 · 2 min readBuild our first AI Agent In JavaScriptBuilding Your First AI Agent from Scratch in JavaScript In this article, we will build our first AI Agent from scratch using JavaScript.We’ll use Node.js along with the OpenAI Agents SDK to understand how agents work at a basic level. Prerequisites ...00
BSBhupendra Singh Negiinbehind-gpt.hashnode.dev·Jan 19 · 2 min readLLM vs ChatGPT vs AI AgentsUnderstanding the Difference Between LLMs, ChatGPT, and AI Agents LLMs, ChatGPT, and AI Agents are often discussed together and may appear similar at first glance. However, they serve different purposes and operate at different levels of abstraction....00
BSBhupendra Singh Negiinbehind-gpt.hashnode.dev·Aug 13, 2025 · 1 min readTokenization: How GPT Reads Your Text 🧩Before GPT can understand or reply to you, it needs to break your text into small pieces called tokens.These tokens are the building blocks GPT uses to process and generate language. What is a Token? Text when break down into small pieces called tok...00
BSBhupendra Singh Negiinbehind-gpt.hashnode.dev·Aug 12, 2025 · 2 min readVector Embeddings: Turning Words into NumbersWe will discuss, why we convert words to numbers and how it is helpful? Computers don’t understand words like “apple” or “cat”. They understand numbers.So, we turn each word, sentence, or paragraph into a list of numbers this list is called a vector...00