Files
gpt-engineer/gpt_engineer/domain.py
2023-06-25 14:03:04 +02:00

7 lines
170 B
Python

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]])