はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    ノーベル賞

『Introduction | 🦜️🔗 LangChain』

  • 人気
  • 新着
  • すべて
  • How to return structured data from a model | 🦜️🔗 LangChain

    3 users

    python.langchain.com

    It is often useful to have a model return output that matches a specific schema. One common use-case is extracting data from text to insert into a database or use with some other downstream system. This guide covers a few strategies for getting structured outputs from a model. The .with_structured_output() method​ This is the easiest and most reliable way to get structured outputs. with_structured

    • 世の中
    • 2024/08/16 16:47
    • LangChain Expression Language (LCEL) | 🦜️🔗 LangChain

      3 users

      python.langchain.com

      The LCEL cheatsheet shows common patterns that involve the Runnable interface and LCEL expressions. Please see the following list of how-to guides that cover common tasks with LCEL. A list of built-in Runnables can be found in the LangChain Core API Reference. Many of these Runnables are useful when composing custom "chains" in LangChain using LCEL. Benefits of LCEL​ LangChain optimizes the run-ti

      • 世の中
      • 2023/12/25 12:19
      • AzureOpenAIEmbeddings | 🦜️🔗 LangChain

        3 users

        python.langchain.com

        This will help you get started with AzureOpenAI embedding models using LangChain. For detailed documentation on AzureOpenAIEmbeddings features and configuration options, please refer to the API reference. Overview​ Integration details​ ProviderPackage Setup​ To access AzureOpenAI embedding models you'll need to create an Azure account, get an API key, and install the langchain-openai integration p

        • テクノロジー
        • 2023/12/14 14:13
        • reference
        • Summarization | 🦜️🔗 Langchain

          3 users

          python.langchain.com

          Use case​Suppose you have a set of documents (PDFs, Notion pages, customer questions, etc.) and you want to summarize the content. LLMs are a great tool for this given their proficiency in understanding and synthesizing text. In this walkthrough we'll go over how to perform document summarization using LLMs. Overview​A central question for building a summarizer is how to pass your documents into t

          • テクノロジー
          • 2023/11/06 14:11
          • Google | 🦜️🔗 LangChain

            3 users

            python.langchain.com

            All functionality related to Google Cloud, Google Gemini and other Google products. Google Generative AI (Gemini API & AI Studio): Access Google Gemini models directly via the Gemini API. Use Google AI Studio for rapid prototyping and get started quickly with the langchain-google-genai package. This is often the best starting point for individual developers. Google Cloud (Vertex AI & other service

            • テクノロジー
            • 2023/10/10 19:35
            • Langchain
            • GCP
            • ai
            • How to split Markdown by Headers | 🦜️🔗 LangChain

              3 users

              python.langchain.com

              Motivation​ Many chat or Q+A applications involve chunking input documents prior to embedding and vector storage. These notes from Pinecone provide some useful tips: When a full paragraph or document is embedded, the embedding process considers both the overall context and the relationships between the sentences and phrases within the text. This can result in a more comprehensive vector representa

              • テクノロジー
              • 2023/09/18 14:18
              • Providers | 🦜️🔗 LangChain

                4 users

                python.langchain.com

                If you'd like to write your own integration, see Extending LangChain. If you'd like to contribute an integration, see Contributing integrations. Integration Packages​ These providers have standalone langchain-{provider} packages for improved versioning, dependency management and testing. ProviderPackageDownloadsLatestJS

                • 学び
                • 2023/06/29 11:15
                • Conceptual guide | 🦜️🔗 LangChain

                  4 users

                  python.langchain.com

                  This guide provides explanations of the key concepts behind the LangChain framework and AI applications more broadly. We recommend that you go through at least one of the Tutorials before diving into the conceptual guide. This will provide practical context that will make it easier to understand the concepts discussed here. The conceptual guide does not cover step-by-step instructions or specific

                  • テクノロジー
                  • 2023/06/21 21:04
                  • Tutorials | 🦜️🔗 LangChain

                    5 users

                    python.langchain.com

                    New to LangChain or LLM app development in general? Read this material to quickly get up and running building your first applications. Get started​ Familiarize yourself with LangChain's open-source components by building simple applications. If you're looking to get started with chat models, vector stores, or other LangChain components from a specific provider, check out our supported integrations

                    • テクノロジー
                    • 2023/05/03 18:29
                    • Introduction | 🦜️🔗 LangChain

                      5 users

                      python.langchain.com

                      LangChain is a framework for developing applications powered by large language models (LLMs). LangChain simplifies every stage of the LLM application lifecycle: Development: Build your applications using LangChain's open-source components and third-party integrations. Use LangGraph to build stateful agents with first-class streaming and human-in-the-loop support. Productionization: Use LangSmith t

                      • テクノロジー
                      • 2023/04/23 12:20
                      • 🦜️🔗 LangChain

                        9 users

                        python.langchain.com

                        • テクノロジー
                        • 2023/03/30 09:09
                        • Python

                        このページはまだ
                        ブックマークされていません

                        このページを最初にブックマークしてみませんか?

                        『Introduction | 🦜️🔗 LangChain』の新着エントリーを見る

                        キーボードショートカット一覧

                        j次のブックマーク

                        k前のブックマーク

                        lあとで読む

                        eコメント一覧を開く

                        oページを開く

                        はてなブックマーク

                        • 総合
                        • 一般
                        • 世の中
                        • 政治と経済
                        • 暮らし
                        • 学び
                        • テクノロジー
                        • エンタメ
                        • アニメとゲーム
                        • おもしろ
                        • アプリ・拡張機能
                        • 開発ブログ
                        • ヘルプ
                        • お問い合わせ
                        • ガイドライン
                        • 利用規約
                        • プライバシーポリシー
                        • 利用者情報の外部送信について
                        • ガイドライン
                        • 利用規約
                        • プライバシーポリシー
                        • 利用者情報の外部送信について

                        公式Twitter

                        • 公式アカウント
                        • ホットエントリー

                        はてなのサービス

                        • はてなブログ
                        • はてなブログPro
                        • 人力検索はてな
                        • はてなブログ タグ
                        • はてなニュース
                        • ソレドコ
                        • App Storeからダウンロード
                        • Google Playで手に入れよう
                        Copyright © 2005-2025 Hatena. All Rights Reserved.
                        設定を変更しましたx