fix: reverting the dummy api key commenting.
Browse files- universal_agent.py +2 -2
universal_agent.py
CHANGED
|
@@ -4,7 +4,7 @@ import pickle
|
|
| 4 |
from io import BytesIO
|
| 5 |
from pathlib import Path
|
| 6 |
from typing import Any
|
| 7 |
-
|
| 8 |
|
| 9 |
import cv2
|
| 10 |
import polars as pl
|
|
@@ -21,7 +21,7 @@ from smolagents import (
|
|
| 21 |
VisitWebpageTool,
|
| 22 |
WikipediaSearchTool,
|
| 23 |
)
|
| 24 |
-
|
| 25 |
# import nest_asyncio
|
| 26 |
# nest_asyncio.apply()
|
| 27 |
|
|
|
|
| 4 |
from io import BytesIO
|
| 5 |
from pathlib import Path
|
| 6 |
from typing import Any
|
| 7 |
+
import os
|
| 8 |
|
| 9 |
import cv2
|
| 10 |
import polars as pl
|
|
|
|
| 21 |
VisitWebpageTool,
|
| 22 |
WikipediaSearchTool,
|
| 23 |
)
|
| 24 |
+
os.environ["OPENAI_API_KEY"] = "sk-dumykey"
|
| 25 |
# import nest_asyncio
|
| 26 |
# nest_asyncio.apply()
|
| 27 |
|