ben-aaron188 | 68434e4 | 2022-12-24 20:04:21 +0100 | [diff] [blame] | 1 | #' Contains the pricing for completion requests (see: [https://openai.com/api/pricing/#faq-completions-pricing](https://openai.com/api/pricing/#faq-completions-pricing)) |
| 2 | #' |
| 3 | #' @description |
| 4 | #' These are the prices listed for 1k tokens of requests for the various models. These are needed for the `rgpt3_cost_estimate(...)` function. |
| 5 | #' @export |
| 6 | price_base_davinci = 0.02 |
| 7 | price_base_curie = 0.002 |
| 8 | price_base_babbage = 0.0005 |
| 9 | price_base_ada = 0.0004 |