Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|