|
898 | 898 | " column_name = \"text\", # name of column with text to classify\n", |
899 | 899 | " labels = labels, # dictionary of label definitions, defined above\n", |
900 | 900 | " save_dir = \"toy_classify\", # directory to save results, use a Google Drive folder (e.g. \"/content/drive/folder\") for permanent storage (see 'Loading your data' section)\n", |
901 | | - " model = \"gpt-5.4-mini\", # GPT model used for classification (gpt-5.4 is best, gpt-5.4-nano is cheapest and fastest, gpt-5.4-mini is good balance)\n", |
| 901 | + " model = \"gpt-5.4-mini\", # GPT model used for classification (gpt-5.5 is best, gpt-5.4-nano is cheapest and fastest, gpt-5.4-mini is good balance)\n", |
902 | 902 | " modality = \"text\", # input modality can also be \"entity\" (for terms like 'apple pie', not full texts), \"web\" (see web section), \"pdf\", \"image\", or \"audio\" (see multimodal section)\n", |
903 | 903 | " ###\n", |
904 | 904 | " ### the parameters below are less important\n", |
|
3135 | 3135 | " column_name = \"text\", # name of column with text to rate\n", |
3136 | 3136 | " attributes = attributes, # attributes to score on 0–100 scale; defined above\n", |
3137 | 3137 | " save_dir = \"toy_rate\", # directory to save results, use a Google Drive folder (e.g. \"/content/drive/folder\") for permanent storage (see 'Loading your data' section)\n", |
3138 | | - " model = \"gpt-5.4-mini\", # GPT model used for ratings (gpt-5.4 is best, gpt-5.4-nano is cheapest and fastest, gpt-5.4-mini is good balance)\n", |
| 3138 | + " model = \"gpt-5.4-mini\", # GPT model used for ratings (gpt-5.5 is best, gpt-5.4-nano is cheapest and fastest, gpt-5.4-mini is good balance)\n", |
3139 | 3139 | " modality = \"text\", # input modality can also be \"entity\" (for terms like 'apple pie', not full texts), \"web\" (see web section), \"pdf\", \"image\", or \"audio\" (see multimodal section)\n", |
3140 | 3140 | " ###\n", |
3141 | 3141 | " ### the parameters below are less important\n", |
|
7813 | 7813 | " attributes = attributes, # attributes to extract; returns \"<NA>\" if GPT doesn't know\n", |
7814 | 7814 | " additional_instructions = \"\",\n", |
7815 | 7815 | " save_dir = \"toy_extract\", # directory to save results, use a Google Drive folder (e.g. \"/content/drive/folder\") for permanent storage (see 'Loading your data' section)\n", |
7816 | | - " model = \"gpt-5.4\", # GPT model used for extraction (mini is cheaper but knows less)\n", |
| 7816 | + " model = \"gpt-5.5\", # GPT model used for extraction (mini is cheaper but knows less)\n", |
7817 | 7817 | " reasoning_effort = \"medium\",\n", |
7818 | 7818 | " modality = \"entity\", # input modality can also be \"text\", \"pdf\", \"image\", or \"audio\" (see multimodal section)\n", |
7819 | 7819 | " n_attributes_per_run = None, # default: all attributes in one prompt; set 12 or lower to split many attributes across prompts\n", |
|
8296 | 8296 | " attributes = attributes, # attributes to extract; returns \"<NA>\" if GPT doesn't know\n", |
8297 | 8297 | " additional_instructions = \"\",\n", |
8298 | 8298 | " save_dir = \"toy_pdf_extract\", # directory to save results, use a Google Drive folder (e.g. \"/content/drive/folder\") for permanent storage (see 'Loading your data' section)\n", |
8299 | | - " model = \"gpt-5.4\",\n", |
| 8299 | + " model = \"gpt-5.5\",\n", |
8300 | 8300 | " modality = \"pdf\",\n", |
8301 | 8301 | " reasoning_effort = \"high\",\n", |
8302 | 8302 | " reset_files = False,\n", |
|
20193 | 20193 | " entity_batch_frac = 0.25, # fraction of overall dataset generated in one batch\n", |
20194 | 20194 | " existing_entities_cap = 100, # number of prior entities seen by each prompt\n", |
20195 | 20195 | " save_dir = \"toy_seed\",\n", |
20196 | | - " model = \"gpt-5.4\",\n", |
| 20196 | + " model = \"gpt-5.5\",\n", |
20197 | 20197 | " reset_files = False,\n", |
20198 | 20198 | ")" |
20199 | 20199 | ], |
|
21051 | 21051 | " population_description = population_description, # can also pass in a df with an existing sample of demographic characteristics or personas\n", |
21052 | 21052 | " questions = questions, # if no questions, you get the generated personas alone\n", |
21053 | 21053 | " save_dir = \"toy_poll\",\n", |
21054 | | - " model = \"gpt-5.4\",\n", |
| 21054 | + " model = \"gpt-5.5\",\n", |
21055 | 21055 | " reasoning_effort = \"medium\",\n", |
21056 | 21056 | " num_personas = 200,\n", |
21057 | 21057 | " n_questions_per_run = 10,\n", |
|
21461 | 21461 | " scientific_theory = True, # set to False if you want general ideation to problem solve on any topic\n", |
21462 | 21462 | " save_dir = \"automation_ideate\",\n", |
21463 | 21463 | " evaluation_mode = \"recursive_rank\", # uses gabriel.rank recursively to find cream of the crop (set to 'rate' or 'rank' for faster runs)\n", |
21464 | | - " model = \"gpt-5.4\",\n", |
21465 | | - " ranking_model = \"gpt-5.4\",\n", |
| 21464 | + " model = \"gpt-5.5\",\n", |
| 21465 | + " ranking_model = \"gpt-5.5\",\n", |
21466 | 21466 | " reasoning_effort = \"high\",\n", |
21467 | 21467 | " web_search = False, # more expensive if True, but allows GPT to more robustly explore existing literature\n", |
21468 | 21468 | " use_seed_entities = True, # enforces idea diversity\n", |
|
25189 | 25189 | " labels = labels, # labels to classify\n", |
25190 | 25190 | " save_dir = \"entity_web\",\n", |
25191 | 25191 | " additional_instructions = additional_instructions,\n", |
25192 | | - " model = \"gpt-5.4\", # GPT model used for scoring and searching\n", |
| 25192 | + " model = \"gpt-5.5\", # GPT model used for scoring and searching\n", |
25193 | 25193 | " n_runs = 1,\n", |
25194 | 25194 | " modality = \"web\", # using web searching\n", |
25195 | 25195 | " search_context_size = \"medium\", # how much web info to pull ('high' is more expensive, 'low' cheaper)\n", |
|
25762 | 25762 | " column_name = \"prompt\", # column containing the prompt text\n", |
25763 | 25763 | " identifier_column = \"identifier\", # unique identifier for each prompt\n", |
25764 | 25764 | " file_name = \"regional_responses.csv\",\n", |
25765 | | - " model = \"gpt-5.4\", # smaller models are cheaper\n", |
| 25765 | + " model = \"gpt-5.5\", # smaller models are cheaper\n", |
25766 | 25766 | " web_search = True,\n", |
25767 | 25767 | " web_search_filters = {\"country\": \"country\", \"region\": \"region\"}, # optional per-prompt filters; values are columns in the df\n", |
25768 | 25768 | " n_parallels = 650,\n", |
|
25833 | 25833 | " column_name = \"criminal legal codes and policing rules\",\n", |
25834 | 25834 | " attributes = attributes,\n", |
25835 | 25835 | " save_dir = \"toy_web\",\n", |
25836 | | - " model = \"gpt-5.4\",\n", |
| 25836 | + " model = \"gpt-5.5\",\n", |
25837 | 25837 | ")" |
25838 | 25838 | ], |
25839 | 25839 | "metadata": { |
|
0 commit comments