elegant-sandwich-48375
06/19/2026, 1:45 PMancient-wolf-19325
06/19/2026, 1:45 PMfrom flytekit import task, workflow
import pandas as pd
@task
def create_dataset(name: str, age: int) -> pd.DataFrame:
return pd.DataFrame({"name": [name], "age": [age]})
@workflow
def my_workflow(name: str, age: int) -> pd.DataFrame:
return create_dataset(name=name, age=age)
Flyte can orchestrate this as part of a larger ML workflow, and you can use pandas DataFrames as both inputs and outputs for tasks. Would you like more detail on integrating ML models or using other AI libraries within Flyte tasks?
Sources:
- https://flyte.org/blog/orchestration-of-machine-learning-pipelines#starCount
- https://flyte.org/blog/meet-the-databricks-integration#starCount 👍 0 button 👎 0 button 💡 Hint: Mention @herald in the thread for followups.acoustic-parrot-22802
06/19/2026, 1:48 PMacoustic-parrot-22802
06/19/2026, 1:49 PMacoustic-parrot-22802
06/19/2026, 1:49 PMancient-wolf-19325
06/19/2026, 1:49 PMacoustic-parrot-22802
06/19/2026, 1:50 PMancient-wolf-19325
06/19/2026, 1:50 PMgoogle-cloud-compute) to create the persistent disk programmatically. However, direct examples of GCP disk provisioning from within Flyte tasks are not present in the provided documentation, so this approach is not explicitly documented (source).
Would you like more detail on how to implement either approach?
Sources:
- Introducing Flyte: A Cloud Native Machine Learning and Data Processing Platform 👍 0 button 👎 0 button 💡 Hint: Mention @herald in the thread for followups.acoustic-parrot-22802
06/19/2026, 1:52 PMancient-wolf-19325
06/19/2026, 1:52 PMacoustic-parrot-22802
06/19/2026, 1:53 PMancient-wolf-19325
06/19/2026, 1:53 PMacoustic-parrot-22802
06/19/2026, 1:55 PMacoustic-parrot-22802
06/19/2026, 2:00 PM