/
githubmirror
/
gpt-engineer
Обзор
Документация
Войти
/
githubmirror
/
gpt-engineer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
gpt_engineer/core/base_memory.py
15 строк
485 B
kristiankyvik
small changes
10 фев 2024, 15:20
10 фев 2024, 15:20
6c30796
Код
Авторство
О чём код?
""" Base Memory Module This module provides a type alias for a mutable mapping that represents the base memory structure used in the GPT Engineer project. The base memory is a mapping from file names (as strings or Path objects) to their corresponding code content (as strings). Type Aliases: BaseMemory: A mutable mapping from file names to code content. """ from pathlib import Path from typing import MutableMapping, Union BaseMemory = MutableMapping[Union[str, Path], str]