markrodrigo commited on
Commit
15687a2
·
1 Parent(s): 6b7d4ca
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -58,8 +58,7 @@ def respond(user_message, chat_history):
58
 
59
 
60
  with gr.Blocks(title="Text to PostGIS Postgresql via Llama 3.2") as demo:
61
- gr.Markdown("# Text to SQL via Llama 3.2\n### Convert natural language to PostGIS SQL for high end functions.")
62
-
63
  chatbot = gr.Chatbot(
64
  label="Chat",
65
  height=400,
@@ -70,7 +69,7 @@ with gr.Blocks(title="Text to PostGIS Postgresql via Llama 3.2") as demo:
70
  with gr.Row():
71
  with gr.Column(scale=5):
72
  msg = gr.Textbox(
73
- placeholder="Describe what SQL query you need...",
74
  lines=2,
75
  container=False
76
  )
 
58
 
59
 
60
  with gr.Blocks(title="Text to PostGIS Postgresql via Llama 3.2") as demo:
61
+ gr.Markdown("# Natural Language to Spatial SQL.\n### Convert natural language and spatial primitives to PostGIS with Llama 3.2
 
62
  chatbot = gr.Chatbot(
63
  label="Chat",
64
  height=400,
 
69
  with gr.Row():
70
  with gr.Column(scale=5):
71
  msg = gr.Textbox(
72
+ placeholder="Natural Language : WKT format",
73
  lines=2,
74
  container=False
75
  )