indoxrouter 0.1.33__tar.gz → 0.1.35__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: indoxrouter
3
- Version: 0.1.33
3
+ Version: 0.1.35
4
4
  Summary: A unified client for various AI providers
5
5
  Author-email: indoxRouter Team <ashkan.eskandari.dev@gmail.com>
6
6
  License: MIT
@@ -300,11 +300,9 @@ class Client:
300
300
  if hasattr(self, "access_token") and self.access_token:
301
301
  headers["Authorization"] = f"Bearer {self.access_token}"
302
302
 
303
- logger.debug(f"Making {method} request to {url} (stream={stream})")
304
- if data and stream:
305
- logger.debug(f"Streaming request data: {json.dumps(data, indent=2)}")
306
- elif data and not stream:
307
- logger.debug(f"Non-streaming request data: {json.dumps(data, indent=2)}")
303
+ # logger.debug(f"Making {method} request to {url}")
304
+ # if data:
305
+ # logger.debug(f"Request data: {json.dumps(data, indent=2)}")
308
306
 
309
307
  # Diagnose potential issues with the request (only for non-file uploads)
310
308
  if method == "POST" and data and not files:
@@ -337,24 +335,16 @@ class Client:
337
335
 
338
336
  # Check if we need to reauthenticate (401 Unauthorized) - for both streaming and non-streaming
339
337
  if response.status_code == 401:
340
- logger.debug(
341
- f"Received 401 for {method} {url} (stream={stream}), attempting to reauthenticate"
342
- )
338
+ logger.debug("Received 401, attempting to reauthenticate")
343
339
  self._authenticate()
344
340
 
345
341
  # Update Authorization header with new token if available
346
342
  if hasattr(self, "access_token") and self.access_token:
347
343
  headers["Authorization"] = f"Bearer {self.access_token}"
348
344
  request_params["headers"] = headers
349
- logger.debug(
350
- f"Updated Authorization header for retry (stream={stream})"
351
- )
352
345
 
353
346
  # Retry the request after reauthentication
354
347
  response = self.session.request(**request_params)
355
- logger.debug(
356
- f"Retry response status: {response.status_code} (stream={stream})"
357
- )
358
348
 
359
349
  # For streaming requests, check if the response is successful before returning
360
350
  if stream:
@@ -1425,9 +1415,6 @@ class Client:
1425
1415
 
1426
1416
  # Check if this is an error chunk
1427
1417
  if "error" in chunk:
1428
- logger.debug(
1429
- f"Received error chunk during streaming: {chunk}"
1430
- )
1431
1418
  # Extract error details
1432
1419
  error_info = chunk["error"]
1433
1420
  if isinstance(error_info, str):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: indoxrouter
3
- Version: 0.1.33
3
+ Version: 0.1.35
4
4
  Summary: A unified client for various AI providers
5
5
  Author-email: indoxRouter Team <ashkan.eskandari.dev@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "indoxrouter"
7
- version = "0.1.33"
7
+ version = "0.1.35"
8
8
  authors = [
9
9
  {name = "indoxRouter Team", email = "ashkan.eskandari.dev@gmail.com"},
10
10
  ]
File without changes
File without changes
File without changes
File without changes