UNPKG

@convo-lang/convo-lang

Version:
7 lines (6 loc) 379 B
import { Scope } from "@iyio/common"; import { Conversation, ConversationOptions } from "./Conversation.js"; /** * Creates a new Conversation configured using values defined in the given scope or the root scope. */ export declare const createConversationFromScope: (scope?: Scope, defaultOptions?: ConversationOptions, overridingOptions?: ConversationOptions) => Conversation;