Hi Himani Bohra
If you're using Language Understanding (LUIS), you can import your Language Understanding (LUIS) JSON file to the new Conversational language understanding feature:
- Export the LUIS app
- Export your LUIS application as JSON by using the LUIS authoring APIs or the LUIS portal.
- LUIS Versions – Export REST API
- Map LUIS data to the CLU schema
- Update the exported JSON to align intents, entities, and utterances with the CLU project schema.
- Conversational Language Understanding overview provides details on the CLU schema and supported features.
- Create a CLU project and import data
- Create a CLU project and import the prepared data by using Language Studio or the CLU authoring APIs.
- CLU quickstart (REST API) provides instructions on creating a CLU project and importing data.
- Train the model
- Start a training job to build the CLU model from the imported data.
- Train and evaluate a CLU model provides details on training and evaluating your CLU model.
- Test the model
- Send test utterances to the CLU prediction endpoint and verify intent and entity results.
- Conversational Language Understanding overview provides details on querying your CLU model.
Reference - https://learn.microsoft.com/en-us/azure/ai-services/language-service/reference/migrate
Thank you.