Nigou Julien
Set up LangGraph GAIA agent skeleton
b4bc906
raw
history blame contribute delete
196 Bytes
from gaia_agent import GaiaAgent
def main() -> None:
question = "What is the capital of France?"
answer = GaiaAgent()(question)
print(answer)
if __name__ == "__main__":
main()