Fix failing tests. Add review step.

This commit is contained in:
Anton Osika
2023-06-25 14:00:06 +02:00
parent 9b86678d61
commit ba33e681df
5 changed files with 203 additions and 96 deletions

6
gpt_engineer/domain.py Normal file
View File

@@ -0,0 +1,6 @@
from typing import Callable, List, TypeVar
from gpt_engineer.ai import AI
from gpt_engineer.db import DBs
Step = TypeVar("Step", bound=Callable[[AI, DBs], List[dict]])