This repository was archived by the owner on Aug 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 33
44from typing_extensions import deprecated
55from typing import (
6- TYPE_CHECKING ,
76 Any ,
87 Callable ,
98 Dict ,
@@ -148,7 +147,7 @@ def raise_error(error):
148147 logger .error (f"Failed to { description } : { error } " )
149148 raise Exception (error )
150149
151- variables = _prepare_variables (variables )
150+ variables = prepare_variables (variables )
152151
153152 async with httpx .AsyncClient (follow_redirects = True ) as client :
154153 response = await client .post (
Original file line number Diff line number Diff line change 33
44from typing_extensions import deprecated
55from typing import (
6- TYPE_CHECKING ,
76 Any ,
87 Callable ,
98 Dict ,
105104from literalai .observability .thread import Thread
106105from literalai .prompt_engineering .prompt import Prompt , ProviderSettings
107106
108- if TYPE_CHECKING :
109- from typing import Tuple # noqa: F401
110-
111107import httpx
112108
113109from literalai .my_types import PaginatedResponse , User
@@ -150,7 +146,7 @@ def raise_error(error):
150146 logger .error (f"Failed to { description } : { error } " )
151147 raise Exception (error )
152148
153- variables = _prepare_variables (variables )
149+ variables = prepare_variables (variables )
154150 with httpx .Client (follow_redirects = True ) as client :
155151 response = client .post (
156152 self .graphql_endpoint ,
You can’t perform that action at this time.
0 commit comments