models.ts — ui Source File
Architecture documentation for models.ts, a typescript file in the ui codebase. 0 imports, 2 dependents.
Entity Profile
Dependency Diagram
graph LR e37860a4_9df0_2f2b_5ed8_f9df66b35c24["models.ts"] c9ff8f7d_3661_b534_3ddc_912a75766464["model-selector.tsx"] c9ff8f7d_3661_b534_3ddc_912a75766464 --> e37860a4_9df0_2f2b_5ed8_f9df66b35c24 f546dde4_68c5_f623_9286_65aeda13ccc5["page.tsx"] f546dde4_68c5_f623_9286_65aeda13ccc5 --> e37860a4_9df0_2f2b_5ed8_f9df66b35c24 style e37860a4_9df0_2f2b_5ed8_f9df66b35c24 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
export const types = ["GPT-3", "Codex"] as const
export type ModelType = (typeof types)[number]
export interface Model<Type = string> {
id: string
name: string
description: string
strengths?: string
type: Type
}
export const models: Model<ModelType>[] = [
{
id: "c305f976-8e38-42b1-9fb7-d21b2e34f0da",
name: "text-davinci-003",
description:
"Most capable GPT-3 model. Can do any task the other models can do, often with higher quality, longer output and better instruction-following. Also supports inserting completions within text.",
type: "GPT-3",
strengths:
"Complex intent, cause and effect, creative generation, search, summarization for audience",
},
{
id: "464a47c3-7ab5-44d7-b669-f9cb5a9e8465",
name: "text-curie-001",
description: "Very capable, but faster and lower cost than Davinci.",
type: "GPT-3",
strengths:
"Language translation, complex classification, sentiment, summarization",
},
{
id: "ac0797b0-7e31-43b6-a494-da7e2ab43445",
name: "text-babbage-001",
description: "Capable of straightforward tasks, very fast, and lower cost.",
type: "GPT-3",
strengths: "Moderate classification, semantic search",
},
{
id: "be638fb1-973b-4471-a49c-290325085802",
name: "text-ada-001",
description:
"Capable of very simple tasks, usually the fastest model in the GPT-3 series, and lowest cost.",
type: "GPT-3",
strengths:
"Parsing text, simple classification, address correction, keywords",
},
{
id: "b43c0ea9-5ad4-456a-ae29-26cd77b6d0fb",
name: "code-davinci-002",
description:
"Most capable Codex model. Particularly good at translating natural language to code. In addition to completing code, also supports inserting completions within code.",
type: "Codex",
},
{
id: "bbd57291-4622-4a21-9eed-dd6bd786fdd1",
name: "code-cushman-001",
description:
"Almost as capable as Davinci Codex, but slightly faster. This speed advantage may make it preferable for real-time applications.",
type: "Codex",
strengths: "Real-time application where low-latency is preferable",
},
]
Domain
Imported By
Source
Frequently Asked Questions
What does models.ts do?
models.ts is a source file in the ui codebase, written in typescript. It belongs to the ComponentRegistry domain.
What files import models.ts?
models.ts is imported by 2 file(s): model-selector.tsx, page.tsx.
Where is models.ts in the architecture?
models.ts is located at deprecated/www/app/(app)/examples/playground/data/models.ts (domain: ComponentRegistry, directory: deprecated/www/app/(app)/examples/playground/data).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free