diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-13 23:44:50 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-13 23:44:50 -0700 |
commit | 8a0b6956faec3fa9302d4a31bf0e3bb5a43f94fa (patch) | |
tree | ec895a272190dde976ef7045ec62b94095a8d6b7 /continuedev/src | |
parent | 122b63daeec6cb35d401eccd660759e1745f6778 (diff) | |
download | sncontinue-8a0b6956faec3fa9302d4a31bf0e3bb5a43f94fa.tar.gz sncontinue-8a0b6956faec3fa9302d4a31bf0e3bb5a43f94fa.tar.bz2 sncontinue-8a0b6956faec3fa9302d4a31bf0e3bb5a43f94fa.zip |
adding addtransform slash command
Diffstat (limited to 'continuedev/src')
-rw-r--r-- | continuedev/src/continuedev/core/config.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/core/config.py b/continuedev/src/continuedev/core/config.py index 2e231468..93dae17e 100644 --- a/continuedev/src/continuedev/core/config.py +++ b/continuedev/src/continuedev/core/config.py @@ -35,10 +35,15 @@ class ContinueConfig(BaseModel): ), SlashCommand( name="ddtobq", - description="Create a dlt pipeline to load data from a data source into BigQuery", + description="Adjust a dlt pipeline to load data into BigQuery", step_name="DDtoBQRecipe", ), SlashCommand( + name="addtransform", + description="Add transforms to the chess.com API dlt pipeline.", + step_name="AddTransformRecipe", + ), + SlashCommand( name="deployairflow", description="Deploy a dlt pipeline to Airflow", step_name="DeployPipelineAirflowRecipe", |