UNPKG

on-codemerge

Version:

A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product

12 lines (11 loc) 445 B
import { AIDriver, DriverOptions, OptionsDescription } from './AIDriver'; export interface GitHubAzureOptions extends DriverOptions { maxTokens?: number; topP?: number; } export declare class GitHubAzureDriver implements AIDriver<GitHubAzureOptions> { private apiKey; constructor(apiKey: string); getOptionsDescription(): OptionsDescription; generateText(prompt: string, options?: GitHubAzureOptions): Promise<string>; }