Spaces:
Sleeping
Sleeping
DuckDuckGo execution test
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ import pandas as pd
|
|
6 |
|
7 |
import config
|
8 |
from agent import Agent
|
|
|
9 |
|
10 |
|
11 |
def run_and_submit_all( profile: gr.OAuthProfile | None):
|
@@ -178,4 +179,5 @@ if __name__ == "__main__":
|
|
178 |
print("-"*(60 + len(" App Starting ")) + "\n")
|
179 |
|
180 |
print("Launching Gradio Interface for Basic Agent Evaluation...")
|
|
|
181 |
demo.launch(debug=True, share=False)
|
|
|
6 |
|
7 |
import config
|
8 |
from agent import Agent
|
9 |
+
from utils import DuckDuckGo
|
10 |
|
11 |
|
12 |
def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
|
179 |
print("-"*(60 + len(" App Starting ")) + "\n")
|
180 |
|
181 |
print("Launching Gradio Interface for Basic Agent Evaluation...")
|
182 |
+
print(DuckDuckGo("Who is the president of France?"))
|
183 |
demo.launch(debug=True, share=False)
|