File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
common/blocks/data/store/database
datasources/handlers/databases Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- from enum import StrEnum
1+ from enum import Enum
22
33
4- class DatabaseEngineType (StrEnum ):
4+ class DatabaseEngineType (str , Enum ):
55 POSTGRESQL = "postgresql"
66 MYSQL = "mysql"
77 SQLITE = "sqlite"
Original file line number Diff line number Diff line change 66from typing_extensions import Literal
77
88from llmstack .common .blocks .base .schema import BaseSchema as _Schema
9+ from llmstack .common .blocks .data .store .database .constants import DatabaseEngineType
910from llmstack .common .blocks .data .store .database .database_reader import (
1011 DatabaseReader ,
1112 DatabaseReaderInput ,
1213)
1314from llmstack .common .blocks .data .store .database .utils import (
14- DatabaseEngineType ,
1515 get_database_configuration_class ,
1616)
1717from llmstack .common .blocks .data .store .vectorstore import Document
You can’t perform that action at this time.
0 commit comments