Commit
·
8066e54
1
Parent(s):
719033b
Update api_usage.py
Browse files- api_usage.py +2 -1
api_usage.py
CHANGED
@@ -28,7 +28,8 @@ def get_subscription(key):
|
|
28 |
org = ""
|
29 |
quota = ""
|
30 |
try:
|
31 |
-
r = requests.post(queryUrl, headers=headers, json=body_gpt4 if check_gpt4_availability() else body_turbo)
|
|
|
32 |
except Exception as e:
|
33 |
error_message = str(e)
|
34 |
print(e)
|
|
|
28 |
org = ""
|
29 |
quota = ""
|
30 |
try:
|
31 |
+
r = requests.post(queryUrl, headers=headers, json=body_gpt4 if check_gpt4_availability() else body_turbo)
|
32 |
+
print r.json()
|
33 |
except Exception as e:
|
34 |
error_message = str(e)
|
35 |
print(e)
|