Nigou Julien
Set up LangGraph GAIA agent skeleton
b4bc906
raw
history blame contribute delete
300 Bytes
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()