Skip to content

Commit

Permalink
feat: update pipeline with new variables
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentLvr committed May 3, 2024
1 parent fbaf36e commit be7110d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion models/growth-engine/__pipeline__.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@
"# Engine\n",
"engine_name = \"growth-engine\"\n",
"assistant_name = \"Growth Assistant\"\n",
"custom_pipeline_path = os.path.join(naas_data_product.MODELS_PATH, engine_name, \"custom\", \"__pipeline__.ipynb\")"
"custom_pipeline_path = os.path.join(naas_data_product.MODELS_PATH, engine_name, \"custom\", \"__pipeline__.ipynb\")\n",
"limit_linkedin = 0\n",
"limit_llm = 5"
]
},
{
Expand Down Expand Up @@ -269,6 +271,8 @@
" \"sheet_people\": sheet_people,\n",
" \"output_dir\": engine_dir,\n",
" \"datalake_dir\": datalake_dir,\n",
" \"limit_linkedin\": limit_linkedin,\n",
" \"limit_llm\": limit_llm\n",
" }\n",
")\n",
"organizations = NotebookStep(\n",
Expand All @@ -284,6 +288,7 @@
" \"sheet_people\": sheet_people,\n",
" \"output_dir\": engine_dir,\n",
" \"datalake_dir\": datalake_dir,\n",
" \"limit_linkedin\": limit_linkedin,\n",
" }\n",
")\n",
"contacts = NotebookStep(\n",
Expand All @@ -298,6 +303,7 @@
" \"linkedin_url\": linkedin_url,\n",
" \"datalake_dir\": datalake_dir,\n",
" \"output_dir\": engine_dir,\n",
" \"limit_llm\": limit_llm\n",
" }\n",
")\n",
"analytics = NotebookStep(\n",
Expand Down

0 comments on commit be7110d

Please sign in to comment.