Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
OurBuilding Ambient Agents with LangGraph course is now available on LangChain Academy!
Open In ColabOpen on GitHub

Upstage Groundedness Check

This notebook covers how to get started with Upstage groundedness check models.

Installation

Installlangchain-upstage package.

pip install -U langchain-upstage

Environment Setup

Make sure to set the following environment variables:

import os

os.environ["UPSTAGE_API_KEY"]="YOUR_API_KEY"

Usage

InitializeUpstageGroundednessCheck class.

from langchain_upstageimport UpstageGroundednessCheck

groundedness_check= UpstageGroundednessCheck()

Use therun method to check the groundedness of the input text.

request_input={
"context":"Mauna Kea is an inactive volcano on the island of Hawai'i. Its peak is 4,207.3 m above sea level, making it the highest point in Hawaii and second-highest peak of an island on Earth.",
"answer":"Mauna Kea is 5,207.3 meters tall.",
}

response= groundedness_check.invoke(request_input)
print(response)

Related


[8]ページ先頭

©2009-2025 Movatter.jp