from inference_sdk import InferenceHTTPClient | |
import dotenv | |
import os | |
def create_client(api_key): | |
client = InferenceHTTPClient( | |
api_url="https://classify.roboflow.com", | |
api_key=api_key | |
) | |
return client | |
from inference_sdk import InferenceHTTPClient | |
import dotenv | |
import os | |
def create_client(api_key): | |
client = InferenceHTTPClient( | |
api_url="https://classify.roboflow.com", | |
api_key=api_key | |
) | |
return client | |