mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
add tidb spend limit config (#9999)
This commit is contained in:
parent
12adcf8925
commit
5580bcf870
|
@ -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,
|
||||
)
|
||||
|
|
|
@ -4,6 +4,7 @@ import uuid
|
|||
import requests
|
||||
from requests.auth import HTTPDigestAuth
|
||||
|
||||
from configs import dify_config
|
||||
from extensions.ext_database import db
|
||||
from extensions.ext_redis import redis_client
|
||||
from models.dataset import TidbAuthBinding
|
||||
|
@ -208,7 +209,7 @@ class TidbService:
|
|||
}
|
||||
|
||||
spending_limit = {
|
||||
"monthly": 10,
|
||||
"monthly": dify_config.TIDB_SPEND_LIMIT,
|
||||
}
|
||||
password = str(uuid.uuid4()).replace("-", "")[:16]
|
||||
display_name = str(uuid.uuid4()).replace("-", "")
|
||||
|
|
Loading…
Reference in New Issue
Block a user