• LangChain – Ollama Model Running On Local

    LangChain – Ollama Model Installation How To Install Ollama Model In Local ? (2) How To Test The Installation https://ollama.com/ ollama – version ollama pull smollm:135m (3) Making Of Agentic AI from langchain.agents import create_agent def get_weather(city:'str')->str: "Get The Weather Of The Given City" return f"Its Sunny In {city}" agent = create_agent( model="ollama:smollm:135m", tools=[get_weather] system_prompt = "You are an helpful Assistant" ) result = agent.invoke( {"messages": [{"role": "user", "content": "What's the weather in San Francisco?"}]} ) print(result.content) (4) Install qwen3:0.6b Model Which Support Tool Calling ollama pull qwen3:0.6b from langchain.agents import create_agent def get_weather(city:str)->str: """Get The Weather Of The Given

    Read More

  • LangChain – Quick Guide

    LangChain – Quick Guide Table Of Contents: Quick Start Build A Basic Agent Building A Real World Agent. (1) Quickstart pip install -U langchain deepagents export OPENAI_API_KEY = "your-api-key" (2) Building A Basic Agent from langchain.agents import create_agent def get_weather(city:str)->str: """Get Weather For A Given City""" return f"It's Always Sunny In {city}!" agent = create_agent( model = "openai:gpt-5.5", tools = [get_weather], system_prompt = "You Are A Helpful Assistant", ) result = agent.invoke( {"message":[{"role":"user", "content":"What Is The Weather In Bhubaneswar"}]} ) print(result["message"][-1].content_blocks) (3) Building A Real World Agent SYSTEM_PROMPT = """ You are a literary data assistant. IMPORTANT RULES: 1. If

    Read More

  • LangChain – Installation

    LangChain – Installation pip install -U langchain # Installing Open AI Integration pip install -U langchain-openai # Installing The Anthropic Integration pip install -U langchain-anthropic

    Read More

  • LangChain – Introduction To LangChain

    Introduction To LangChain

    Read More

  • Agentic AI – Practical Projects

    Agentic AI – Practical Projects https://github.com/ashishpatel26/500-AI-Agents-Projects https://github.com/langchain-ai/langgraph/blob/23961cff61a42b52525f3b20b4094d8d2fba1744/docs/docs/how-tos/react-agent-from-scratch-functional.ipynb https://github.com/langchain-ai/langgraph/blob/23961cff61a42b52525f3b20b4094d8d2fba1744/docs/concepts/multi_agent

    Read More

  • Agentic AI – Interview Question Set – 6

    Agentic AI – Interview Questions Set – 6

    Read More

  • Agentic AI – Interview Questions Set – 5

    Agentic AI – Interview Questions Set – 5

    Read More

  • Agentic AI – Interview Questions Set -4

    Agentic AI – Interview Questions Set-4

    Read More

  • Agentic AI – Interview Questions Set-3

    Agentic AI – Interview Questions Set-3

    Read More

  • Agentic AI – Interview Questions Set-2

    Agentic AI – Interview Questions Set-2

    Read More