Spaces:
Runtime error
Runtime error
File size: 2,222 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
from typing import Optional, Dict
from httpx import Client as HttpxClient, AsyncClient as HttpxAsyncClient, Response
from phi.cli.settings import phi_cli_settings
from phi.cli.credentials import read_auth_token
from phi.utils.log import logger
class Api:
def __init__(self):
self.headers: Dict[str, str] = {
"user-agent": f"{phi_cli_settings.app_name}/{phi_cli_settings.app_version}",
"Content-Type": "application/json",
}
self._auth_token: Optional[str] = None
self._authenticated_headers = None
@property
def auth_token(self) -> Optional[str]:
if self._auth_token is None:
try:
self._auth_token = read_auth_token()
except Exception as e:
logger.debug(f"Failed to read auth token: {e}")
return self._auth_token
@property
def authenticated_headers(self) -> Dict[str, str]:
if self._authenticated_headers is None:
self._authenticated_headers = self.headers.copy()
token = self.auth_token
if token is not None:
self._authenticated_headers[phi_cli_settings.auth_token_header] = token
return self._authenticated_headers
def Client(self) -> HttpxClient:
return HttpxClient(
base_url=phi_cli_settings.api_url,
headers=self.headers,
timeout=60,
)
def AuthenticatedClient(self) -> HttpxClient:
return HttpxClient(
base_url=phi_cli_settings.api_url,
headers=self.authenticated_headers,
timeout=60,
)
def AsyncClient(self) -> HttpxAsyncClient:
return HttpxAsyncClient(
base_url=phi_cli_settings.api_url,
headers=self.headers,
timeout=60,
)
def AuthenticatedAsyncClient(self) -> HttpxAsyncClient:
return HttpxAsyncClient(
base_url=phi_cli_settings.api_url,
headers=self.authenticated_headers,
timeout=60,
)
api = Api()
def invalid_response(r: Response) -> bool:
"""Returns true if the response is invalid"""
if r.status_code >= 400:
return True
return False
|