Open voxel51-bot opened 21 hours ago
The changes in this pull request involve enhancements to the lightningQuery
selector by adding a new variable slice
, which retrieves its value from groupSlice
. This modification is reflected in the GraphQL schema by introducing a nullable slice
input field in the LightningInput
type and a new filters
field in the ExtendedViewForm
type. Additionally, the documentation for the FiftyOne App has been updated to provide clearer guidance on various functionalities. A new test class has also been added to validate the functionality of querying grouped datasets.
File Path | Change Summary |
---|---|
app/packages/state/src/recoil/queryPerformance.ts | Added slice variable to lightningQuery selector; imported groupSlice . |
app/schema.graphql | Added slice: String = null to LightningInput ; added filters: JSON = null to ExtendedViewForm . |
docs/source/user_guide/app.rst | Updated documentation with new sections on session management, dataset interaction, and visualizations. |
fiftyone/server/lightning.py | Added slice to LightningInput ; updated multiple method signatures to include a filter parameter. |
tests/unittests/lightning_tests.py | Introduced TestGroupDatasetLightningQueries class with a test_group_dataset method; updated _execute and _get_paths methods to include slice . |
app/packages/state/src/hooks/useSetModalState.ts | Removed references to dynamicGroupsViewMode in modal state setup. |
app/packages/state/src/recoil/options.ts | Renamed dynamicGroupsViewMode to dynamicGroupsViewModeStore ; added new dynamicGroupsViewMode selectorFamily. |
app/packages/components/src/components/PanelCTA/index.tsx | Updated TypographyOrNode to center text when children is a string. |
app/packages/core/src/plugins/SchemaIO/components/NativeModelEvaluationView/index.tsx | Modified docCaption and demoDocCaption strings for clarity. |
app/packages/embeddings/src/Embeddings.tsx | Updated Embeddings component to streamline "Compute visualization" functionality. |
app/packages/operators/src/SplitButton.tsx | Updated MenuItem styling and modified PrimaryWithTag function to include a disabled parameter. |
app/packages/operators/src/state.ts | Updated OperatorExecutionOption type definitions and adjusted logic in useOperatorPromptSubmitOptions . |
docs/source/plugins/developing_plugins.rst | Enhanced documentation on plugin development with new sections and examples. |
docs/source/plugins/using_plugins.rst | Added new information on managing delegated operations and configuration requirements. |
docs/source/user_guide/config.rst | Introduced new configuration field allow_legacy_orchestrators and corresponding environment variable. |
fiftyone/core/config.py | Added allow_legacy_orchestrators attribute to FiftyOneConfig class. |
fiftyone/operators/executor.py | Updated execute_or_delegate_operator function for delegated execution tracking and clarified documentation. |
lightningQuery
selector that also involve metadata handling.lightningQuery
selector by integrating a new dependency, groupSlice
, which is related to the changes made in the main PR that also involve the lightningQuery
selector.ComputeVisualizationButton
and its integration into the Embeddings
component may relate to how the lightningQuery
selector is utilized in the context of visualizations, although the connection is more indirect.execute_operator
function, which may relate to the overall query performance and execution context that the main PR aims to enhance through the lightningQuery
modifications.metadata
attribute is always initialized, which aligns with the main PR's emphasis on enhancing the input structure for the lightningQuery
selector, particularly regarding how metadata is handled.🐰 In the fields where data flows,
A newslice
in queries grows.
With filters set and paths to trace,
The app now finds its perfect space.
Documentation shines, clear as day,
Helping users find their way! 🌼
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Merge
release/v1.1.0
todevelop
Summary by CodeRabbit
Release Notes
New Features
slice
parameter inLightningInput
for enhanced dataset querying flexibility.filters
field inExtendedViewForm
for advanced filtering options.Documentation
Bug Fixes
Improvements
ImageElement
class.