mirror of
https://github.com/langchain-ai/lcel-teacher.git
synced 2026-07-18 18:34:30 -04:00
11 lines
239 B
Python
11 lines
239 B
Python
import langsmith
|
|
|
|
if __name__ == "__main__":
|
|
client = langsmith.Client()
|
|
client.upload_csv(
|
|
csv_file="eval/eval.csv",
|
|
input_keys=["question"],
|
|
output_keys=["answer"],
|
|
name="lcel-teacher-eval",
|
|
)
|