Spaces:
Running
Running
choose models
Browse files- pages/sql.py +4 -0
pages/sql.py
CHANGED
@@ -43,6 +43,10 @@ Only use the following tables:
|
|
43 |
Question: {input}
|
44 |
'''
|
45 |
|
|
|
|
|
|
|
|
|
46 |
from langchain_core.prompts import PromptTemplate
|
47 |
prompt = PromptTemplate.from_template(template, partial_variables = {"dialect": "duckdb", "top_k": 10})
|
48 |
|
|
|
43 |
Question: {input}
|
44 |
'''
|
45 |
|
46 |
+
with st.sidebar:
|
47 |
+
model = st.selectbox("LLM:", ["gorilla", "llama3", "olmo"])
|
48 |
+
|
49 |
+
|
50 |
from langchain_core.prompts import PromptTemplate
|
51 |
prompt = PromptTemplate.from_template(template, partial_variables = {"dialect": "duckdb", "top_k": 10})
|
52 |
|