UNPKG

autoheal

Version:

GPT Test driven development. Automatically fix tests and guide GPT to write and fix code using your tests.

8 lines (6 loc) 210 B
export const languageModels = { "gpt-4": "gpt-4", "gpt-4-turbo-preview": "gpt-4-turbo-preview", "gpt-3.5-turbo": "gpt-3.5-turbo", } as const; export type LanguageModelName = keyof typeof languageModels;