mirror of
https://github.com/aljazceru/gpt-engineer.git
synced 2025-12-17 12:45:26 +01:00
7 lines
170 B
Python
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]])
|