Conversation
e47eee9 to
c9cc105
Compare
Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
c9cc105 to
0bf980d
Compare
kumare3
approved these changes
Mar 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request adds several new example applications to the
examples/apps/panel_appdirectory, demonstrating Flyte's capabilities for async workflows, distributed training, caching/retries, agent-based orchestration, and integration with external APIs. Additionally, it fixes a serialization bug in the scaling metric logic and updates related unit tests for correct protobuf mapping.New example applications:
sample_distributed_random_forest.pydemonstrating distributed training of a random forest model using async tasks and Flyte's file/directory abstractions.sample_mnist_training.pyshowing async MNIST data loading, model training, and evaluation with PyTorch, including tensor serialization via Flyte's file API.sample_langgraph_gemini_agent.pyintegrating LangGraph and Gemini for weather forecast agent workflows, including tool invocation and external API calls.sample_pbj_agent.pyimplementing a dependency-respecting agent workflow for a "PBJ sandwich" plan, with concurrent async execution of steps.sample_async.py,sample_caching_and_retries.py, andsample_hello_world.pyas simple async, caching/retries, and basic workflow examples. [1] [2] [3]Bug fixes and test improvements:
_get_scaling_metricby mappingvaltotarget_valuefor both concurrency and request rate metrics.test_app_serde.pyto verify correct protobuf field mapping for scaling metrics, replacing previous bug documentation with positive assertions.