Antonio Cheong
commited on
Commit
·
0c2ab61
1
Parent(s):
55ec545
print response text on failure
Browse files- src/EdgeGPT.py +2 -0
src/EdgeGPT.py
CHANGED
@@ -123,6 +123,8 @@ class Conversation:
|
|
123 |
allow_redirects=True,
|
124 |
)
|
125 |
if response.status_code != 200:
|
|
|
|
|
126 |
raise Exception("Authentication failed")
|
127 |
try:
|
128 |
self.struct = response.json()
|
|
|
123 |
allow_redirects=True,
|
124 |
)
|
125 |
if response.status_code != 200:
|
126 |
+
print(f"Status code: {response.status_code}")
|
127 |
+
print(response.text)
|
128 |
raise Exception("Authentication failed")
|
129 |
try:
|
130 |
self.struct = response.json()
|