fix: commenting nestasyncio.
Browse files- universal_agent.py +1 -1
universal_agent.py
CHANGED
@@ -22,9 +22,9 @@ from smolagents import (
|
|
22 |
WikipediaSearchTool,
|
23 |
)
|
24 |
# import nest_asyncio
|
|
|
25 |
|
26 |
_ = load_dotenv(dotenv_path=find_dotenv(raise_error_if_not_found=False), override=True)
|
27 |
-
# nest_asyncio.apply()
|
28 |
with open("all_questions.pkl", "rb") as f:
|
29 |
all_questions = pickle.load(f)
|
30 |
lang_model = init_chat_model(
|
|
|
22 |
WikipediaSearchTool,
|
23 |
)
|
24 |
# import nest_asyncio
|
25 |
+
# nest_asyncio.apply()
|
26 |
|
27 |
_ = load_dotenv(dotenv_path=find_dotenv(raise_error_if_not_found=False), override=True)
|
|
|
28 |
with open("all_questions.pkl", "rb") as f:
|
29 |
all_questions = pickle.load(f)
|
30 |
lang_model = init_chat_model(
|