**Full Changelog**: https://github.com/gretelai/gretel-python-client/compare/0.10.0...v0.11.0
Updates
- First-class interfaces for using Gretel Evaluate! Which lets users create Synthetic Quality Score reports directly through the Gretel Service. See more details on our docs here: https://docs.gretel.ai/gretel.ai/evaluation-framework/overview
- Pandas DataFrame support for SDK interfaces. Now when creating models with the SDK, you can utilize Pandas DataFrames directly. In order to do this, Pandas must be installed separately from `gretel-client`. See example of this usage in our newly updated SDK docs: https://docs.gretel.ai/gretel.ai/cli-and-sdk-fundamentals/creating-models#creating-models-with-the-sdk
- When using the SDK, in addition to using the `poll()` function for tracking job status, you may now issue single `Model.refresh()` or `RecordHandler.refresh()` calls that will do a one time state update of a job's status from the Gretel API. Examples included in our updated docs: https://docs.gretel.ai/gretel.ai/cli-and-sdk-fundamentals/creating-models#creating-models-with-the-sdk
- When using the SDK, users may download all job artifacts with a new `Model.download_artifacts()` or `RecordHandler.download_artifacts()` method. Examples included in our updated docs: https://docs.gretel.ai/gretel.ai/cli-and-sdk-fundamentals/creating-models#creating-models-with-the-sdk
- Misc bug fixes