File size: 196 Bytes
b4bc906
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from gaia_agent import GaiaAgent


def main() -> None:
    question = "What is the capital of France?"
    answer = GaiaAgent()(question)
    print(answer)


if __name__ == "__main__":
    main()