Spaces:
Sleeping
Sleeping
File size: 300 Bytes
b4bc906 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from gaia_agent import GaiaAgent
QUESTIONS = [
"What is the capital of France?",
"Return the word test.",
]
def main() -> None:
agent = GaiaAgent()
for question in QUESTIONS:
print({"question": question, "answer": agent(question)})
if __name__ == "__main__":
main()
|