chore(build): Fix typo and new pre-commit config (#987)

This commit is contained in:
Fangyin Cheng
2023-12-28 14:14:20 +08:00
committed by GitHub
parent b13d3f6d92
commit fd3a5d2bfa
77 changed files with 432 additions and 446 deletions

View File

@@ -1,13 +1,14 @@
from typing import List, Optional
from dbgpt.agent.memory.base import GptsPlan
from dbgpt.agent.memory.gpts_memory import (
GptsPlansMemory,
GptsPlan,
GptsMessageMemory,
GptsMessage,
GptsMessageMemory,
GptsPlansMemory,
)
from ..db.gpts_plans_db import GptsPlansEntity, GptsPlansDao
from ..db.gpts_messages_db import GptsMessagesDao, GptsMessagesEntity
from ..db.gpts_plans_db import GptsPlansDao, GptsPlansEntity
class MetaDbGptsPlansMemory(GptsPlansMemory):