cboettig commited on
Commit
3e5a88e
·
1 Parent(s): 14d83f7

choose models

Browse files
Files changed (1) hide show
  1. 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