Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.21 KB

README.md

File metadata and controls

38 lines (28 loc) · 1.21 KB

Getting Started

  1. Prompts
  2. Templates
  3. Actions
  4. Plans
  5. Chaining
  6. Storage
  7. Turns

Migration Documentation

Welcome to the migration docs! Please note that we currently have two sections:

  1. js guidance
  2. dotnet guidance

Migration

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.

Using this sample with Azure Open AI

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.