File size: 229 Bytes
d26280a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import typer

from gpt_engineer.applications.cli.main import main
from tests.caching_ai import CachingAI

main.__globals__["AI"] = CachingAI
app = typer.Typer()
app.command()(main)

if __name__ == "__main__":
    typer.run(main)