Skip to content

Commit c0adf93

Browse files
committed
use default ports in README
1 parent d37cc8e commit c0adf93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Lucidata is an LLM based query tool designed to democratize data access. It tran
3838

3939
3. 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

4848
4. (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"

0 commit comments

Comments
 (0)