You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: introduce PipelineHandle for future pipeline operations (#54)
* feat: add PipelineHandle class for future pipeline operations
* fix: remove existing __init__.py to replace with proper imports
* feat: add PipelineHandle to package exports
* feat: add PipelineHandle import for protocols
* feat: update PipelineResourceProtocol to return PipelineHandle
* feat: import PipelineHandle in resource module
* feat: update list method to return PipelineHandle instances
* feat: update get method to return PipelineHandle instance
* fix: avoid circular import by using TYPE_CHECKING for PipelineHandle import
* fix: move PipelineHandle import inside list method to avoid circular import
* fix: move PipelineHandle import inside get method to avoid circular import
* feat: add PipelineHandle import to test module
* fix: update test to check for PipelineHandle instead of DeepsetPipeline
* fix: update get test to check for PipelineHandle instead of DeepsetPipeline
* fix: update get without yaml test to check for PipelineHandle
* fix: update special characters test to check for PipelineHandle
* feat: add PipelineHandle import to integration tests
* fix: update integration test to expect PipelineHandle for create test
* fix: update integration test to expect PipelineHandle for list test
* fix: update integration test pagination to expect PipelineHandle
* fix: update integration get test to expect PipelineHandle
* fix: update integration update test to expect PipelineHandle
* fix: update list_pipelines tool to work with PipelineHandle
* fix: update get_pipeline tool to work with PipelineHandle
* fix: update update_pipeline tool to work with PipelineHandle
* feat: add PipelineHandle import to tools tests
* fix: update FakePipelineResource to return PipelineHandle instances
* fix: no changes needed for get_pipeline test - it should work with new handle
* feat: add comprehensive tests for PipelineHandle class
* fix: tests
0 commit comments