Closed3
LangSmithのテレメトリ関連機能を試した
トレースを確認するには以下の通りにするだけ
LangSmithでもプロンプトのバージョン管理ができる
プロンプトの登録
プロンプトを利用したコードをトレースする
client = Client()
@traceable # Auto-trace this function
def pipeline(question: str, context: str):
chain = client.pull_prompt("rag", include_model=True)
result = chain.invoke({"question": question, "context": context})
return result
print(pipeline(question="Are cats cute? Or are they scary?", context="Cats are cute."))
メタデータとしてプロンプトの情報が追加される
自動評価もできる
ルールの追加
評価器の設定
評価結果がトレースに紐づく
このスクラップは2ヶ月前にクローズされました