We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146f987 commit 0b77a31Copy full SHA for 0b77a31
libs/e2e-tests/e2e_tests/test_utils/tracing.py
@@ -2,16 +2,19 @@
2
import time
3
from typing import Callable
4
5
-from langsmith import Client
+# TODO: LangSmith deactivated for now
6
+# from langsmith import Client
7
-LANGSMITH_CLIENT = Client()
8
+# LANGSMITH_CLIENT = Client()
9
10
11
def record_langsmith_sharelink(
12
run_id: str, record_property: Callable, tries: int = 6
13
) -> None:
14
try:
- sharelink = LANGSMITH_CLIENT.share_run(run_id)
15
+ # TODO: LangSmith deactivated for now
16
+ # sharelink = LANGSMITH_CLIENT.share_run(run_id)
17
+ sharelink = "deactivated"
18
record_property("langsmith_url", sharelink)
19
logging.info("recorded langsmith link: %s", sharelink)
20
except Exception:
0 commit comments