Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,6 +3,8 @@ import semantic_kernel
|
|
| 3 |
from plugins.sk_bing_plugin import BingPlugin
|
| 4 |
from plugins.sk_web_pages_plugin import WebPagesPlugin
|
| 5 |
from planning.autogen_planner import AutoGenPlanner
|
|
|
|
|
|
|
| 6 |
|
| 7 |
# Configure your credentials here
|
| 8 |
bing_api_key = "..." # Replace with your Bing API key
|
|
|
|
| 3 |
from plugins.sk_bing_plugin import BingPlugin
|
| 4 |
from plugins.sk_web_pages_plugin import WebPagesPlugin
|
| 5 |
from planning.autogen_planner import AutoGenPlanner
|
| 6 |
+
from typing_extensions import Protocol, runtime_checkable
|
| 7 |
+
from pydantic import BaseModel
|
| 8 |
|
| 9 |
# Configure your credentials here
|
| 10 |
bing_api_key = "..." # Replace with your Bing API key
|