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": 1.5,
7            "outputTokens": 4096,
8            "outputTokenPrice": 2
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": 8192,
13            "inputTokenPrice": 30,
14            "outputTokens": 4096,
15            "outputTokenPrice": 60
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,
21            "outputTokens": 4096,
22            "outputTokenPrice": 30
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,
28            "outputTokens": 4096,
29            "outputTokenPrice": 15
30        },
31        "gpt-4o-mini": {
32            "description": "",
33            "inputTokens": 128000,
34            "inputTokenPrice": 0.15,
35            "outputTokens": 4096,
36            "outputTokenPrice": 0.6
37        },
38        "gpt-4-32k": {
39            "description": "",
40            "inputTokens": 32768,
41            "inputTokenPrice": 60,
42            "outputTokens": 4096,
43            "outputTokenPrice": 120
44        },
45        "gpt-3.5-turbo-16k": {
46            "description": "",
47            "inputTokens": 16385,
48            "inputTokenPrice": 3,
49            "outputTokens": 4096,
50            "outputTokenPrice": 4
51        }
52    },
53    "embedding": {
54        "text-embedding-ada-002": {
55            "description": "Most capable 2nd generation embedding model",
56            "inputTokens": 8191,
57            "inputTokenPrice": 0.1,
58            "dimensions": 1536
59        },
60        "text-embedding-3-small": {
61            "description": "Increased performance over 2nd generation ada embedding model",
62            "inputTokens": 8191,
63            "inputTokenPrice": 0.02,
64            "dimensions": 1536
65        },
66        "text-embedding-3-large": {
67            "description": "Most capable embedding model for both english and non-english tasks",
68            "inputTokens": 8191,
69            "inputTokenPrice": 0.13,
70            "dimensions": 3072
71        },
72        "text-embedding-ada-002-v2": {
73            "description": "",
74            "inputTokens": 8191,
75            "inputTokenPrice": 0.1,
76            "dimensions": 1536
77        }
78    }
79}