File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Lucidata is an LLM based query tool designed to democratize data access. It tran
3838
39393 . Send your query to the query_router endpoint, and check out the results!
4040``` bash
41- curl -X POST " http://localhost:8003 /translate-and-execute" \
41+ curl -X POST " http://localhost:8002 /translate-and-execute" \
4242 -H " Content-Type: application/json" \
4343 -d ' {
4444 "natural_query": "Show me the cars with the best power-to-weight ratio, sorted from highest to lowest"
@@ -47,14 +47,14 @@ curl -X POST "http://localhost:8003/translate-and-execute" \
4747
48484 . (Optional) Pipe the output to the ` jq ` CLI:
4949``` bash
50- curl -X POST " http://localhost:8003 /translate-and-execute" \
50+ curl -X POST " http://localhost:8002 /translate-and-execute" \
5151 -H " Content-Type: application/json" \
5252 -d ' {
5353 "natural_query": "Show me the cars with the best power-to-weight ratio, sorted from highest to lowest"
5454 }' | jq
5555
5656# you can also select a specific tag
57- curl -X POST " http://localhost:8003 /translate-and-execute" \
57+ curl -X POST " http://localhost:8002 /translate-and-execute" \
5858 -H " Content-Type: application/json" \
5959 -d ' {
6060 "natural_query": "Show me the cars with the best power-to-weight ratio, sorted from highest to lowest"
You can’t perform that action at this time.
0 commit comments