File size: 354 Bytes
7033ed5
3a9b248
b528a04
3a9b248
b528a04
7033ed5
 
 
 
08f321d
7033ed5
 
 
b528a04
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import sys
from agent import GaiaAgent

agent = GaiaAgent()

# Get the question from command-line arguments
if len(sys.argv) > 1:
    question = sys.argv[1]
else:
    question = "In the video https://www.youtube.com/watch?v=L1vXCYZAYYM, what is the highest number of bird species to be on camera simultaneously?"


result = agent(question)

print(result)