add tidb spend limit config (#9999)

This commit is contained in:
Jyong
2024-10-29 17:51:13 +08:00
committed by GitHub
parent 12adcf8925
commit 5580bcf870
2 changed files with 7 additions and 1 deletions

View File

@@ -63,3 +63,8 @@ class TidbOnQdrantConfig(BaseSettings):
description="Tidb project id",
default=None,
)
TIDB_SPEND_LIMIT: Optional[int] = Field(
description="Tidb spend limit",
default=100,
)