xref: /plugin/aichat/Model/OpenAI/models.json (revision f31e9616786f3bf27a7841ea57a8146b8e39795f)
1{
2    "chat": {
3        "gpt-3.5-turbo": {
4            "description": "GPT-3.5 Turbo is a variant of GPT-3.5 that is optimized for speed and can generate responses in a fraction of the time.",
5            "inputTokens": 16385,
6            "inputTokenPrice": 0.50,
7            "outputTokens": 4096,
8            "outputTokenPrice": 1.50
9        },
10        "gpt-4": {
11            "description": "GPT-4 is the latest version of OpenAI's Generative Pre-trained Transformer (GPT) language model. It is capable of generating human-like text and can be used for a wide range of natural language processing tasks.",
12            "inputTokens": 81924,
13            "inputTokenPrice": 30.00,
14            "outputTokens": 4096,
15            "outputTokenPrice": 60.00
16        },
17        "gpt-4-turbo": {
18            "description": "GPT-4 Turbo is a variant of GPT-4 that is optimized for speed and can generate responses in a fraction of the time.",
19            "inputTokens": 128000,
20            "inputTokenPrice": 10.00,
21            "outputTokens": 4096,
22            "outputTokenPrice": 30.00
23        },
24        "gpt-4o": {
25            "description": "GPT-4o has the same high intelligence as GPT-4 Turbo but is much more efficient",
26            "inputTokens": 128000,
27            "inputTokenPrice": 5.00,
28            "outputTokens": 4096,
29            "outputTokenPrice": 15.00
30        }
31    },
32    "embedding": {
33        "text-embedding-ada-002": {
34            "description": "Most capable 2nd generation embedding model",
35            "inputTokens": 8192,
36            "inputTokenPrice": 0.10,
37            "dimensions": 1536
38        },
39        "text-embedding-3-small": {
40            "description": "Increased performance over 2nd generation ada embedding model",
41            "inputTokens": 8192,
42            "inputTokenPrice": 0.02,
43            "dimensions": 1536
44        },
45        "text-embedding-3-large": {
46            "description": "Most capable embedding model for both english and non-english tasks",
47            "inputTokens": 8192,
48            "inputTokenPrice": 0.13,
49            "dimensions": 3072
50        }
51    }
52}
53