migrate-from-model-serving
Installation
SKILL.md
Model Serving to Databricks Apps Migration Guide
This guide instructs LLM coding agents how to migrate an MLflow ResponsesAgent from Databricks Model Serving to Databricks Apps.
Overview
Goal: Migrate an agent deployed on Databricks Model Serving (using ResponsesAgent with predict()/predict_stream()) to Databricks Apps (using MLflow GenAI Server with @invoke/@stream decorators).
Key Transformation:
- Model Serving: Synchronous
predict()andpredict_stream()methods on a class - Apps: Functions with
@invokeand@streamdecorators (sync or async, based on user preference)
Deliverables: After migration is complete, you will have: