skin-segmentation-and-scoring / api /roboflow_inference_client.py
haydpw's picture
Add application file
08fa61a
raw
history blame
236 Bytes
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