Skip to content

Commit

Permalink
chore: fixing lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsteele authored Mar 4, 2024
1 parent 800ba56 commit bb20ae9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/models.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ const models = {
},
'gpt-3.5-turbo-0125': {
tokens: _16k,
price: .0000005
price: 0.0000005
},
'gpt-3.5-turbo-instruct': {
tokens: _4k,
price: .0000015 // input only... output is $2 / 1m
price: 0.0000015 // input only... output is $2 / 1m
},

// embeddings
'text-embedding-ada-002': {
tokens: _8k - 1, // offset
price: .0000001
price: 0.0000001
},
'text-embedding-3-small': {
tokens: _8k - 1, // offset
Expand Down

0 comments on commit bb20ae9

Please sign in to comment.