Ugrás a fő tartalomhoz

LangChain4j for Beginners

Csatlakozzon a Microsoft Reactorhoz, és vegye fel a kapcsolatot a fejlesztőkkel élőben

Készen áll az AI és a legújabb technológiák használatának megkezdésére? A Microsoft Reactor eseményeket, képzéseket és közösségi erőforrásokat biztosít a fejlesztőknek, vállalkozóknak és startupoknak az AI-technológiákra és egyebekre való támaszkodásához. Csatlakozzon Ön is!

LangChain4j for Beginners

Csatlakozzon a Microsoft Reactorhoz, és vegye fel a kapcsolatot a fejlesztőkkel élőben

Készen áll az AI és a legújabb technológiák használatának megkezdésére? A Microsoft Reactor eseményeket, képzéseket és közösségi erőforrásokat biztosít a fejlesztőknek, vállalkozóknak és startupoknak az AI-technológiákra és egyebekre való támaszkodásához. Csatlakozzon Ön is!

Visszalépés

LangChain4j for Beginners

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

  • Események ebben a sorozatban:
  • 6

A hands-on series for Java developers who want to ship real AI features, not just hello-world demos.
Over six sessions, you’ll build working examples with LangChain4j and Azure OpenAI—starting from basic chat, through prompt patterns and document retrieval, and ending with AI agents that can call external tools and services.
Every session includes live coding plus a GitHub repo with all the code, so you can follow along, copy, adapt, and drop it straight into your own projects.

What you'll learn

Foundations & memory
Wire a Java application to GPT-5 using LangChain4j. Start with simple request–response calls, then add chat memory to maintain conversation context. You’ll compare stateless vs. stateful sessions side by side and see how tokens, context windows, and configuration impacts cost, latency, and capability.

Prompt engineering
Learn how prompt structure changes everything. We’ll cover 8 practical patterns for consistent output—controlling reasoning depth, adding self-reflection so the model checks its own work, enforcing structured JSON responses, and using chain-of-thought techniques to make reasoning visible and debuggable.

RAG (Retrieval-Augmented Generation)
Turn your own documents into an extension of the model. You’ll build an end-to-end retrieval pipeline: chunking, embeddings, semantic search, and answer synthesis with citations. By the end, you’ll have an AI that answers from your data instead of guessing from its training set.

Tools & MCP
You'll expose Java methods as tools using @Tool annotations and watch the AI chain them automatically with the ReAct pattern. Then you'll explore Model Context Protocol (MCP) an open standard for AI-to-tool communication, and build a Supervisor Agent.

Agentic Patterns
Explore 8 patterns that power production AI: chain agents like an assembly line, fan-out for parallel expert opinions, loop until a critic approves, and route requests to the right specialist.

Közelgő események

Az alábbi eseményekre kattintva további információkat tudhat meg, és regisztrálhat az egyes eseményekre.

Minden alkalommal a - Koordinált egyetemes idő

márc.

05

csütörtök

2026

Tools, MCP and Agents with LangChain4j

5:00 du. - 6:00 du. (UTC)

Move from "text generator" to "action taker." You'll expose Java methods as tools using @Tool annotations and watch the AI chain them automatically with the ReAct pattern. Then you'll explore Model Context Protocol (MCP)—an open standard for AI-to-tool communication—and build a Supervisor Agent that dynamically orchestrates sub-agents to read files, analyze content, and summarize results

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Részletek

márc.

12

csütörtök

2026

Safety, Reliability & Best Practices in LangChain4j

4:00 du. - 5:00 du. (UTC)

Learn how to build safe, reliable, and enterprise-ready AI applications in Java, including how to protect API keys and model endpoints, validate tool output, enforce content filters, and keep LLMs from stepping outside their intended boundaries. See how to design prompts defensively, restrict system capabilities, and use structured interfaces to avoid injection attacks. We'll also explore patterns for safe RAG, secure memory, and audit-ready logging that make your Langchain4j applications trustworthy, enterprise-grade, and ready for real users.Learn how to build safe, reliable, and enterprise-ready AI applications in Java, including how to protect API keys and model endpoints, validate tool output, enforce content filters, and keep LLMs from stepping outside their intended boundaries. See how to design prompts defensively, restrict system capabilities, and use structured interfaces to avoid injection attacks. We'll also explore patterns for safe RAG, secure memory, and audit-ready logging that make your Langchain4j applications trustworthy, enterprise-grade, and ready for real users.

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Részletek

márc.

19

csütörtök

2026

Agentic Patterns with LangChain4j

4:00 du. - 5:00 du. (UTC)

In this BONUS finale, we graduate from single agents to full multi-agent systems. We'll explore 8 patterns that power production AI: chain agents like an assembly line, fan-out for parallel expert opinions, loop until a critic approves, and route requests to the right specialist. Then unlock Supervisor agents that delegate like project managers and Human-in-the-Loop gates when humans need the final say. Finally, explore goal-oriented planners that find optimal paths and peer-to-peer meshes where agents collaborate as equals without a boss.

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Részletek

Előadók

A sorozat korábbi eseményei

Minden alkalommal a - Koordinált egyetemes idő

febr.

12

csütörtök

2026

Introduction to LangChain4j

5:00 du. - 6:00 du. (UTC)

Build your first AI-powered Java application from scratch. You'll connect to Azure OpenAI GPT-5, send your first prompts, and discover why memory transforms a simple demo into a production-ready conversational AI. See the dramatic difference between stateless and stateful chat side-by-side, and learn how tokens and context windows shape everything your AI can do.

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Igény szerinti megtekintés

febr.

19

csütörtök

2026

Prompt Engineering with LangChain4j

5:00 du. - 6:00 du. (UTC)

The same AI gives wildly different results based on how you ask. Master eight prompting patterns that control GPT-5's reasoning depth, from quick calculations to deep architectural analysis. Learn to write self-reflecting prompts that iterate until code meets quality criteria, structured analysis frameworks for consistent reviews, and chain-of-thought techniques that reveal the AI's reasoning process.

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Igény szerinti megtekintés

febr.

26

csütörtök

2026

Data-Driven Apps with RAG with LangChain4j

5:00 du. - 6:00 du. (UTC)

Your AI only knows what it learned during training—until you give it access to your documents. Build a complete Retrieval-Augmented Generation system that chunks documents, creates semantic embeddings, and finds relevant context for every question. Watch your AI answer questions about your own files with source citations and confidence scores, grounded in facts rather than hallucinations.

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Igény szerinti megtekintés

Regisztráljon erre a sorozatra

Bejelentkezés Microsoft-fiókjával

Bejelentkezés

Vagy adja meg az e-mail-címét a regisztrációhoz

*

Az eseményre való regisztrációval Ön elfogadja a A Microsoft Reactor magatartási kódexe.

A sorozat korábbi eseményei

Minden alkalommal a - Koordinált egyetemes idő

febr.

12

csütörtök

2026

Introduction to LangChain4j

5:00 du. - 6:00 du. (UTC)

Build your first AI-powered Java application from scratch. You'll connect to Azure OpenAI GPT-5, send your first prompts, and discover why memory transforms a simple demo into a production-ready conversational AI. See the dramatic difference between stateless and stateful chat side-by-side, and learn how tokens and context windows shape everything your AI can do.

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Igény szerinti megtekintés

febr.

19

csütörtök

2026

Prompt Engineering with LangChain4j

5:00 du. - 6:00 du. (UTC)

The same AI gives wildly different results based on how you ask. Master eight prompting patterns that control GPT-5's reasoning depth, from quick calculations to deep architectural analysis. Learn to write self-reflecting prompts that iterate until code meets quality criteria, structured analysis frameworks for consistent reviews, and chain-of-thought techniques that reveal the AI's reasoning process.

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Igény szerinti megtekintés

febr.

26

csütörtök

2026

Data-Driven Apps with RAG with LangChain4j

5:00 du. - 6:00 du. (UTC)

Your AI only knows what it learned during training—until you give it access to your documents. Build a complete Retrieval-Augmented Generation system that chunks documents, creates semantic embeddings, and finds relevant context for every question. Watch your AI answer questions about your own files with source citations and confidence scores, grounded in facts rather than hallucinations.

  • Formátum:
  • alt##LivestreamÉlő közvetítés

Téma: Kódolás, nyelvek és keretrendszerek

Nyelv: Angol

Igény szerinti megtekintés

Az oldal egyes részei gépi vagy AI fordításúak lehetnek.