0Pricing
AI Agents with LangChain & Autonomous Workflows · レッスン

AIエージェントとLLMを理解する

AIエージェントとは何か、従来のソフトウェアとどう異なるのか、またその動作における大規模言語モデルの役割を学びます。

「AIエージェントとLLMを理解する」はCoddyKit上の無料AI Agents with LangChain & Autonomous Workflowsレッスンです。 これはレッスン1/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはAI Agents with LangChain & Autonomous Workflows学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 AI Agents with LangChain & Autonomous Workflowsコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

Welcome to AI Agents!

Welcome! You're about to meet AI agents — how they differ from ordinary software, and the LLMs that power their reasoning.

What Exactly is an AI Agent?

An AI agent is a smart assistant that perceives, reasons, acts, and learns toward a goal. Unlike a rigid script, it adapts as the situation changes.

Agents vs. Traditional Software

A calculator follows fixed rules: input, rule, output. An AI agent asked to find the best flight to Paris will search, compare, and decide along the way.

The Powerhouse: Large Language Models (LLMs)

At the core of most agents sits a Large Language Model (LLM) — trained on huge text corpora to understand language and generate it: answering, summarizing, translating, creating.

How LLMs 'Think' (Simply)

An LLM is a super-smart predictor: given a prompt, it picks the most probable next word, then the next, guided by patterns from billions of training examples.

def simple_llm_response(prompt):
    if "hello" in prompt.lower():
        return "Hello! How can I assist you?"
    elif "weather" in prompt.lower():
        return "I can't check the weather, but I can chat about other things!"
    else:
        return "That's an interesting thought!"

if __name__ == "__main__":
    print(simple_llm_response("Say hello to me."))
    print(simple_llm_response("What's the weather like?"))

LLMs as the Agent's Brain

Inside an agent, the LLM is the reasoning engine. It interprets the goal, breaks tasks into steps, picks which tools to use, and shapes the response.

Key Agent Capabilities with LLMs

Pairing LLMs with other parts unlocks real power: remembering context, planning dynamically, calling external tools, and solving open-ended problems.

Real-World Agent Examples

You'll find agents in customer support (search a knowledge base, file a ticket), personal assistants (book, manage email), and data analysis (query, code, explain).

Agent vs. Chatbot: A Quick Distinction

All agents can chat, but not all chatbots are agents. An agent adds autonomy — it reasons about a goal and takes real actions, not just scripted replies.

Quick Check: Agent or Not?

これまでに学んだことに基づくと、AIエージェントと従来のソフトウェアプログラムを区別する重要な特徴を最もよく表しているのは次のうちどれですか。

Recap: Agents & LLMs

Recap: AI agents perceive, reason, and act, adapting where rule-based software can't. The LLM is the brain that lets them understand, plan, and decide. Up next: LangChain.

よくある質問

「AIエージェントとLLMを理解する」レッスンは無料ですか?

はい。「AIエージェントとLLMを理解する」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、AI Agents with LangChain & Autonomous Workflowsコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 AI Agents with LangChain & Autonomous Workflowsコースには全4レッスンが含まれています。

「AIエージェントとLLMを理解する」で何を学びますか?

AIエージェントとは何か、従来のソフトウェアとどう異なるのか、またその動作における大規模言語モデルの役割を学びます。 ブラウザで直接実行するハンズオンコードでAI Agents with LangChain & Autonomous Workflowsを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

AI Agents with LangChain & Autonomous Workflowsを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのAI Agents with LangChain & Autonomous Workflowsは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン1/4です。

「AIエージェントとLLMを理解する」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このAI Agents with LangChain & Autonomous Workflowsレッスンでコードを書いて実行できますか?

はい。すべてのAI Agents with LangChain & Autonomous Workflowsレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. AIエージェントとLLMを理解する
  2. LangChainのコアコンポーネントを解説
  3. 初めてのシンプルなエージェントを構築する
  4. エージェントにメモリと会話状態を持たせる
← AI Agents with LangChain & Autonomous Workflowsに戻る