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    },
25    "embedding": {
26        "text-embedding-ada-002": {
27            "description": "Most capable 2nd generation embedding model",
28            "inputTokens": 8192,
29            "inputTokenPrice": 0.10,
30            "dimensions": 1536
31        },
32        "text-embedding-3-small": {
33            "description": "Increased performance over 2nd generation ada embedding model",
34            "inputTokens": 8192,
35            "inputTokenPrice": 0.02,
36            "dimensions": 1536
37        },
38        "text-embedding-3-large": {
39            "description": "Most capable embedding model for both english and non-english tasks",
40            "inputTokens": 8192,
41            "inputTokenPrice": 0.13,
42            "dimensions": 3072
43        }
44    }
45}
46