Jetson inference docker returns Cannot GET /model/registry<

greetings fellow organic lifeforms I’m having some problems with my jetson nano 4GB running the inference server docker . i’m trying to do some bird detection using the jetson nano as a inference server . my python code works just fine using https://detect.roboflow.com but not using the ip address of the nano . the curl example also works just fine . the code is as follows

CLIENT = InferenceHTTPClient(
api_url=“http://192.168.2.103:9001”,
api_key=“my_api_key”
)

result = CLIENT.infer(“heron.jpg”, model_id=“heron-hunter/3”)

the important errors are:
inference_sdk.http.errors.HTTPCallErrorError: HTTPCallErrorError(description='404 Client Error: Not Found for url: (http)://192.168.2.103:9001/model/registry

Cannot GET /model/registry

thx for any help in advance

Hey @maxvaneck

Have you run the inference server start command to start the inference server at that IP address?

The api_url should point to a running instance of a inference server, whether that be our hosted API at detect.roboflow.com or your own.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.