Skip to content

Commit 0b77a31

Browse files
committed
Deactivate LangSmith
1 parent 146f987 commit 0b77a31

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

libs/e2e-tests/e2e_tests/test_utils/tracing.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,19 @@
22
import time
33
from typing import Callable
44

5-
from langsmith import Client
5+
# TODO: LangSmith deactivated for now
6+
# from langsmith import Client
67

7-
LANGSMITH_CLIENT = Client()
8+
# LANGSMITH_CLIENT = Client()
89

910

1011
def record_langsmith_sharelink(
1112
run_id: str, record_property: Callable, tries: int = 6
1213
) -> None:
1314
try:
14-
sharelink = LANGSMITH_CLIENT.share_run(run_id)
15+
# TODO: LangSmith deactivated for now
16+
# sharelink = LANGSMITH_CLIENT.share_run(run_id)
17+
sharelink = "deactivated"
1518
record_property("langsmith_url", sharelink)
1619
logging.info("recorded langsmith link: %s", sharelink)
1720
except Exception:

0 commit comments

Comments
 (0)