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 032aab7 commit a8e1b20Copy full SHA for a8e1b20
optillm.py
@@ -12,9 +12,6 @@
12
import re
13
from concurrent.futures import ThreadPoolExecutor
14
15
-# Import the LiteLLM wrapper
16
-from optillm.litellm_wrapper import LiteLLMWrapper
17
-
18
# Import approach modules
19
from optillm.mcts import chat_with_mcts
20
from optillm.bon import best_of_n_sampling
@@ -74,6 +71,8 @@ def get_config():
74
71
azure_ad_token_provider=token_provider
75
72
)
76
73
else:
+ # Import the LiteLLM wrapper
+ from optillm.litellm_wrapper import LiteLLMWrapper
77
default_client = LiteLLMWrapper()
78
return default_client, API_KEY
79
0 commit comments