Spaces:
Sleeping
Sleeping
| 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() | |