浏览代码

chore: clean-up unnecessary annotation on configs with non-null default value (#9323)

tags/0.10.0
Bowen Liang 1年前
父节点
当前提交
5eb00502ec
没有帐户链接到提交者的电子邮件

+ 1
- 1
api/configs/middleware/vdb/oracle_config.py 查看文件

default=None, default=None,
) )


ORACLE_PORT: Optional[PositiveInt] = Field(
ORACLE_PORT: PositiveInt = Field(
description="Port number on which the Oracle database server is listening (default is 1521)", description="Port number on which the Oracle database server is listening (default is 1521)",
default=1521, default=1521,
) )

+ 1
- 1
api/configs/middleware/vdb/pgvector_config.py 查看文件

default=None, default=None,
) )


PGVECTOR_PORT: Optional[PositiveInt] = Field(
PGVECTOR_PORT: PositiveInt = Field(
description="Port number on which the PostgreSQL server is listening (default is 5433)", description="Port number on which the PostgreSQL server is listening (default is 5433)",
default=5433, default=5433,
) )

+ 1
- 1
api/configs/middleware/vdb/pgvectors_config.py 查看文件

default=None, default=None,
) )


PGVECTO_RS_PORT: Optional[PositiveInt] = Field(
PGVECTO_RS_PORT: PositiveInt = Field(
description="Port number on which the PostgreSQL server with PGVecto.RS is listening (default is 5431)", description="Port number on which the PostgreSQL server with PGVecto.RS is listening (default is 5431)",
default=5431, default=5431,
) )

+ 24
- 12
api/configs/middleware/vdb/vikingdb_config.py 查看文件

""" """


VIKINGDB_ACCESS_KEY: Optional[str] = Field( VIKINGDB_ACCESS_KEY: Optional[str] = Field(
default=None, description="The Access Key provided by Volcengine VikingDB for API authentication."
description="The Access Key provided by Volcengine VikingDB for API authentication."
"Refer to the following documentation for details on obtaining credentials:"
"https://www.volcengine.com/docs/6291/65568",
default=None,
) )

VIKINGDB_SECRET_KEY: Optional[str] = Field( VIKINGDB_SECRET_KEY: Optional[str] = Field(
default=None, description="The Secret Key provided by Volcengine VikingDB for API authentication."
description="The Secret Key provided by Volcengine VikingDB for API authentication.",
default=None,
) )
VIKINGDB_REGION: Optional[str] = Field(
default="cn-shanghai",
VIKINGDB_REGION: str = Field(
description="The region of the Volcengine VikingDB service.(e.g., 'cn-shanghai', 'cn-beijing').", description="The region of the Volcengine VikingDB service.(e.g., 'cn-shanghai', 'cn-beijing').",
default="cn-shanghai",
) )
VIKINGDB_HOST: Optional[str] = Field(
default="api-vikingdb.mlp.cn-shanghai.volces.com",
VIKINGDB_HOST: str = Field(
description="The host of the Volcengine VikingDB service.(e.g., 'api-vikingdb.volces.com', \ description="The host of the Volcengine VikingDB service.(e.g., 'api-vikingdb.volces.com', \
'api-vikingdb.mlp.cn-shanghai.volces.com')", 'api-vikingdb.mlp.cn-shanghai.volces.com')",
default="api-vikingdb.mlp.cn-shanghai.volces.com",
) )
VIKINGDB_SCHEME: Optional[str] = Field(
default="http",
VIKINGDB_SCHEME: str = Field(
description="The scheme of the Volcengine VikingDB service.(e.g., 'http', 'https').", description="The scheme of the Volcengine VikingDB service.(e.g., 'http', 'https').",
default="http",
) )
VIKINGDB_CONNECTION_TIMEOUT: Optional[int] = Field(
default=30, description="The connection timeout of the Volcengine VikingDB service."

VIKINGDB_CONNECTION_TIMEOUT: int = Field(
description="The connection timeout of the Volcengine VikingDB service.",
default=30,
) )
VIKINGDB_SOCKET_TIMEOUT: Optional[int] = Field(
default=30, description="The socket timeout of the Volcengine VikingDB service."

VIKINGDB_SOCKET_TIMEOUT: int = Field(
description="The socket timeout of the Volcengine VikingDB service.",
default=30,
) )

正在加载...
取消
保存