pgurazada1 commited on
Commit
c9ad65a
·
verified ·
1 Parent(s): 618d94c

Update server.py

Browse files
Files changed (1) hide show
  1. server.py +10 -10
server.py CHANGED
@@ -28,20 +28,20 @@ async def home(request: Request) -> PlainTextResponse:
28
  return PlainTextResponse(
29
  "Credit Card Database Server"
30
  "\n----\n"
31
- "This server gives you access to the following tools:" \
32
- "\n----\n" \
33
  "sql_db_list_tables\n" \
34
- "---"
35
- "This tool can be used to list the tables in the database."
36
  "sql_db_schema\n" \
37
- "---"
38
- "This tool can be used to get the schema of a table."
39
  "sql_db_query_checker\n" \
40
- "---"
41
- "This tool can be used to check if a query is valid."
42
  "sql_db_query\n" \
43
- "---"
44
- "This tool can be used to execute a query."
45
  )
46
 
47
 
 
28
  return PlainTextResponse(
29
  "Credit Card Database Server"
30
  "\n----\n"
31
+ "This server gives you access to the following tools:\n" \
32
+
33
  "sql_db_list_tables\n" \
34
+ "---\n"
35
+ "This tool can be used to list the tables in the database.\n"
36
  "sql_db_schema\n" \
37
+ "---\n"
38
+ "This tool can be used to get the schema of a table.\n"
39
  "sql_db_query_checker\n" \
40
+ "---\n"
41
+ "This tool can be used to check if a query is valid.\n"
42
  "sql_db_query\n" \
43
+ "---\n"
44
+ "This tool can be used to execute a query.\n"
45
  )
46
 
47