File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 23
23
24
24
MODEL_CHOICE_MAP_EVAL_MODE = {
25
25
"h2ogpt-sql-sqlcoder2" : "defog/sqlcoder2" ,
26
+ "h2ogpt-sql-sqlcoder-34b-alpha" : "defog/sqlcoder-34b-alpha" ,
26
27
"h2ogpt-sql-nsql-llama-2-7B" : "NumbersStation/nsql-llama-2-7B" ,
27
28
"gpt-3.5-turbo" : "gpt-3.5-turbo-1106" ,
28
29
"gpt-4-8k" : "gpt-4" ,
32
33
33
34
MODEL_CHOICE_MAP_DEFAULT = {
34
35
"h2ogpt-sql-sqlcoder2" : "defog/sqlcoder2" ,
36
+ "h2ogpt-sql-sqlcoder-34b-alpha" : "defog/sqlcoder-34b-alpha" ,
35
37
"h2ogpt-sql-nsql-llama-2-7B" : "NumbersStation/nsql-llama-2-7B"
36
38
37
39
}
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ def setup_dir(base_path: str):
26
26
print (f"Download model 2..." )
27
27
snapshot_download (repo_id = "defog/sqlcoder2" , cache_dir = f"{ base_path } /models/" )
28
28
29
+ print (f"Download model 3..." )
30
+ snapshot_download (repo_id = "defog/sqlcoder-34b-alpha" , cache_dir = f"{ base_path } /models/" )
31
+
29
32
print (f"Download embedding model..." )
30
33
snapshot_download (repo_id = "BAAI/bge-base-en" , cache_dir = f"{ base_path } /models/sentence_transformers/" )
31
34
You can’t perform that action at this time.
0 commit comments