Skip to content
Snippets Groups Projects
index.ts 153 B
Newer Older
  • Learn to ignore specific revisions
  • import { LLM, SimpleChatEngine } from "llamaindex";
    
    export async function createChatEngine(llm: LLM) {
      return new SimpleChatEngine({
        llm,
      });
    }