Types of AI Agents available with LangChain

Types of AI Agents available with LangChain

Tiempo de lectura: < 1 minutoToday we are going to see what types of AI agents are available with LangChain. ➡️ The most used. What it does:The LLM decides which tool to use at each step based on only the textual description of the tools.No needs examples or prior instances. For: Typical usage example: agent = initialize_agent( tools=mis_tools, llm=llm, agent_type=AgentType.ZERO_SHOT_REACT_DESCRIPTION, … Read more

Adding searches on the Internet DuckDuckGo in Llama 3.2 8b using Ollama and LangChain for AI Agents

Adding searches on the Internet DuckDuckGo in Llama 3.2 8b using Ollama and LangChain for AI Agents

Tiempo de lectura: < 1 minutoWe will today make our AI agent have a tool that allows it to perform internet searches. First, we will install the necessary libraries: pip install langchain langchain_community pip install ddgs NOW INITIALIZING CONNECTION WITH OLLAMA SERVER (https://devcodelight.com/ollama-con-llama-3-2-in-docker/) from langchain_community.chat_models import ChatOllama from langchain_core.prompts import ChatPromptTemplate # … other imports … # ⚠️ YOUR REMOTE … Read more

Using Tools in LongChain 1.0 for Creating AI Agents

Using Tools in LongChain 1.0 for Creating AI Agents

Tiempo de lectura: 3 minutosToday we are going to learn how to use Tools in LongChain to create AI Agents. To execute this tutorial well, I recommend visiting the one on how to install LangChain. First: What are Tools in LangChain? In the context of a LangChain Agent, a Tool is any external function or resource that the Large … Read more

What is a Chain in LangChain?

What is a Chain in LangChain?

Tiempo de lectura: < 1 minutoWhat is a «Chain» (Link) in LangChain? It is a specific instruction: llm_chain = prompt | llm | output_parser An example perfect and modern of what means a Chain in the architecture of LangChain (specifically using the LangChain Expression Language or LCEL). A Chain (A Chain) in LangChain is the structured sequence of steps or … Read more

Using LangChain with Ollama to Create an AI Agent Tool

Using LangChain with Ollama to Create an AI Agent Tool

Tiempo de lectura: < 1 minutoWe are going to learn how to connect LangChain to our deployed Ollama server today with a small example, for instance, an IA Tools. We first need to have Ollama deployed: here is how. You will obtain the endpoint once Ollama is deployed, and then use LangChain with Python to connect to it remotely. You … Read more

How to Create a Multimodal Chatbot with AI Generative

How to Create a Multimodal Chatbot with AI Generative

Tiempo de lectura: 2 minutosIn 2025, LLaMA (Large Language Model Meta AI) has consolidated as one of the most versatile options for chatbots local or cloud-based, capable of processing text, images, and audio. In this tutorial, you will learn to create a multimodal chatbot using only LLaMA. LLaMA 3 has versions with 7B, 13B, and 70B parameters; for local … Read more

Will AI Replace You? The Brutal Truth in 6 Minutes

Tiempo de lectura: 2 minutosYou’ve been hearing about artificial intelligence for months. “It’s going to take your job,” some say, while others claim it will dominate the world or eliminate the need to study because AI knows everything. But… what’s really true about all this? Will it truly replace you? Spoiler: it’s not as simple as it seems. The … Read more

Artificial Intelligence is Already Here (and You Probably Use It Every Day Without Knowing It)

Tiempo de lectura: < 1 minutoDo you think artificial intelligence is something far-off, from movies or secret laboratories? No! AI already forms part of your daily life, and it’s the most curious thing that many times you don’t even realize it. In this video, I’ll explain what technologies based on AI are currently working around us and how they’re silently … Read more

Agents of Artificial Intelligence: It’s Not Science Fiction, 2025

Agents of Artificial Intelligence: It’s Not Science Fiction, 2025

Tiempo de lectura: < 1 minutoThe Artificial Intelligence Agents are no longer something of the future. They are here. They work and they are about to change everything. You will be explained in this video in a clear and simple way: You’ll also see real examples like AutoGPT, BabyAGI and personalized agents that are already taking decisions, automating tasks and … Read more

How to Create a Mobile App with Local AI Using Mistral and Transformers.js with React Native

How to Create a Mobile App with Local AI Using Mistral and Transformers.js with React Native

Tiempo de lectura: 2 minutosDo you imagine an app that works with artificial intelligence without internet connection? Today I’ll show you how to use Transformers.js and a model like Mistral 7B quantized in the browser or on your mobile, without sending data to external servers. You’ll achieve total privacy by using your own device, it’s free to use, works … Read more