File size: 236 Bytes
08fa61a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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