doberst commited on
Commit
b53c57f
1 Parent(s): 9739009

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +12 -6
config.json CHANGED
@@ -29,16 +29,22 @@
29
  "use_cache": true,
30
  "vocab_size": 32000,
31
  "prompt_wrapper": "human_bot",
32
- "prompt_format": "<human> {context_passage} \n {question} \n<bot>:",
33
- "prompt_format_dict": {"main_start": "<human>: ", "main_stop": "\n", "start_llm_response": "<bot>:"},
 
34
  "tokenizer_local": "tokenizer_tl.json",
35
  "tokenizer_config": {"bos_id":[1], "bos_token":["<s>"], "eos_id":[2],"eos_token":["</s>"]},
36
- "model_parent": "llmware/slim-sql-v0",
37
- "description": "Fact-based question-answering model from llmware - finetuned on tiny-llama - 1.1 parameter base",
38
  "quantization": "int4",
39
- "model_family": "OVGenerativeModel",
40
  "parameters": 1.1,
41
-
 
 
 
 
 
42
  "test_set": [
43
  {
44
  "context": "CREATE TABLE customers (customer_name text, account_number integer,customer_level text, vip_customer text, annual_spend text, user_name text)",
 
29
  "use_cache": true,
30
  "vocab_size": 32000,
31
  "prompt_wrapper": "human_bot",
32
+ "description": "slim-sql is a text-to-sql model.",
33
+ "prompt_format": "<human> {table_schema} \n {question} \n<bot>:",
34
+ "output_format": "{sql}",
35
  "tokenizer_local": "tokenizer_tl.json",
36
  "tokenizer_config": {"bos_id":[1], "bos_token":["<s>"], "eos_id":[2],"eos_token":["</s>"]},
37
+ "model_parent": "llmware/slim-sql-1b-v0",
38
+ "description": "Text-to-SQL model from llmware - finetuned on tiny-llama - 1.1 parameter base",
39
  "quantization": "int4",
40
+ "model_family": "OVGenModel",
41
  "parameters": 1.1,
42
+ "primary_keys": ["sql"],
43
+ "output_values": ["{{sql statement}}"],
44
+ "publisher": "llmware",
45
+ "release_date": "september 2024",
46
+ "function_call": "sql",
47
+ "test_params": ["sql"],
48
  "test_set": [
49
  {
50
  "context": "CREATE TABLE customers (customer_name text, account_number integer,customer_level text, vip_customer text, annual_spend text, user_name text)",