@convo-lang/convo-lang
Version:
The language of AI
7 lines (6 loc) • 379 B
TypeScript
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;