소스 검색

fix: vector_size convert bytes to MB. (#1684)

tags/0.3.33
Garfield Dai 1 년 전
부모
커밋
1263b7de75
No account linked to committer's email address
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3
    2
      api/services/billing_service.py

+ 3
- 2
api/services/billing_service.py 파일 보기

@@ -14,8 +14,9 @@ class BillingService:

billing_info = cls._send_request('GET', '/info', params=params)

vector_size = DatasetService.get_tenant_datasets_usage(tenant_id) / 1024
billing_info['vector_space']['size'] = int(vector_size)
vector_size = DatasetService.get_tenant_datasets_usage(tenant_id)
# Convert bytes to MB
billing_info['vector_space']['size'] = int(vector_size / 1024 / 1024)

return billing_info


Loading…
취소
저장