test: skip flaky langsmith tests

This commit is contained in:
Krrish Dholakia
2024-08-08 13:43:44 -07:00
parent 26cd9e8485
commit bc487a2fac
+6 -4
View File
@@ -60,8 +60,9 @@ async def test_async_langsmith_logging():
print("fields in logged_run_on_langsmith", logged_run_on_langsmith.keys())
input_fields_on_langsmith = logged_run_on_langsmith.get("inputs")
_extra = logged_run_on_langsmith.get("extra", {}) or {}
extra_fields_on_langsmith = _extra.get("invocation_params")
extra_fields_on_langsmith = logged_run_on_langsmith.get("extra").get(
"invocation_params"
)
print("\nLogged INPUT ON LANGSMITH", input_fields_on_langsmith)
@@ -164,8 +165,9 @@ async def test_async_langsmith_logging_with_streaming_and_metadata(sync_mode):
input_fields_on_langsmith = logged_run_on_langsmith.get("inputs")
_extra = logged_run_on_langsmith.get("extra", {}) or {}
extra_fields_on_langsmith = _extra.get("invocation_params")
extra_fields_on_langsmith = logged_run_on_langsmith.get("extra").get(
"invocation_params"
)
assert logged_run_on_langsmith.get("run_type") == "llm"
print("\nLogged INPUT ON LANGSMITH", input_fields_on_langsmith)