From c030c9e3723afc79ebc7b343c9f6c242cfcb9811 Mon Sep 17 00:00:00 2001 From: Thomas Capelle Date: Wed, 14 Aug 2024 14:48:24 +0200 Subject: [PATCH] ignore type UNSET --- weave/trace/op.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/weave/trace/op.py b/weave/trace/op.py index cd3b2bde56e..7c45948700d 100644 --- a/weave/trace/op.py +++ b/weave/trace/op.py @@ -46,9 +46,10 @@ ANTHROPIC_NOT_GIVEN = None try: - from mistralai.types.basemodel import UNSET + # https://github.com/search?q=repo:mistralai/client-python%20Final&type=code + from mistralai.types.basemodel import UNSET # type: ignore - MISTRAL_NOT_GIVEN = UNSET + MISTRAL_NOT_GIVEN = UNSET # type: ignore except ImportError: MISTRAL_NOT_GIVEN = None