From de8956fc7cad2c7260b9569eeb75fa7ffdffca11 Mon Sep 17 00:00:00 2001 From: Robert Goldman Date: Mon, 5 Aug 2024 19:02:21 -0500 Subject: [PATCH] Fix python reference to lama planner. Should be "lama-first", not "lama". --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9aa0b20..10fd181 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ req_body = { } # Send job request to solve endpoint -solve_request_url=requests.post("http://localhost:5001/package/lama/solve", json=req_body).json() +solve_request_url=requests.post("http://localhost:5001/package/lama-first/solve", json=req_body).json() # Query the result in the job celery_result=requests.post('http://localhost:5001' + solve_request_url['result'])