ravithejak commited on
Commit
892c927
1 Parent(s): 72870b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -10,5 +10,8 @@ llm =HuggingFaceHub(repo_id='google/flan-t5-large')
10
  st.title("SQL Query Generator")
11
  st.write("Returns and runs queries from questions in natural language.")
12
 
 
 
 
13
 
14
 
 
10
  st.title("SQL Query Generator")
11
  st.write("Returns and runs queries from questions in natural language.")
12
 
13
+ our_query = "WHAT IS TIMETRAVEL IN SNOWFLAKE"
14
+ completion = llm.invoke(our_query)
15
+ print(completion)
16
 
17