Compare commits

...
Author SHA1 Message Date
Andrew Ferlitsch 6108cf41ed fix: issue 263246858 2023-01-30 17:13:25 +00:00
@@ -207,7 +207,7 @@
},
"outputs": [],
"source": [
"PROJECT_ID = \"[your-project-id]\" # @param {type:\"string\"}\n",
"PROJECT_ID = \"andy-1234-221921\" # @param {type:\"string\"}\n",
"\n",
"# Set the project id\n",
"! gcloud config set project {PROJECT_ID}"
@@ -590,8 +590,9 @@
"outputs": [],
"source": [
"@component\n",
"def consumer(text1: str, text2: str, text3: str):\n",
" print(f\"text1: {text1}; text2: {text2}; text3: {text3}\")"
"def consumer(text1: str, text2: str, text3: str) -> str:\n",
" print(f\"text1: {text1}; text2: {text2}; text3: {text3}\")\n",
" return f\"text1: {text1}; text2: {text2}; text3: {text3}\""
]
},
{