from gaia_agent import GaiaAgent def main() -> None: question = "What is the capital of France?" answer = GaiaAgent()(question) print(answer) if __name__ == "__main__": main()