Welcome to the migration docs! Please note that we currently have two sections:
If you are migrating your existing bot, we recommend starting with the respective 00.MIGRATION in the programming language of your bot. Please note that while the content of both sections will be extremely similar, our goal is to provide code examples in the corresponding language.
To use this sample with Azure Open AI, update OpenAIPlanner to AzureOpenAIPlanner AzureOpenAIPlanner expects an endpoint property, which can be found in the Azure portal
const planner = new AzureOpenAIPlanner({
apiKey: process.env.OPENAI_API_KEY,
defaultModel: 'text-davinci-003',
logRequests: true,
endpoint:
});
Otherwise, please feel free to browse other pages, including Concepts and Prompt Injection.