Skip to content

Commit

Permalink
2023-1106 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesturk committed Nov 24, 2023
1 parent 5d2a504 commit 9986f4c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/scrapeghost/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ def cost(self, prompt_tokens: int, completion_tokens: int) -> float:
models = [
Model("gpt-4", 0.03, 0.06, 8192),
Model("gpt-4-32k", 0.06, 0.12, 32768),
Model("gpt-3.5-turbo", 0.0015, 0.002, 4096),
Model("gpt-3.5-turbo-16k", 0.003, 0.004, 16384),
Model("gpt-3.5-turbo-0613", 0.0015, 0.002, 4096),
Model("gpt-3.5-turbo-16k-0613", 0.003, 0.004, 16384),
Model("gpt-4-1106-preview", 0.01, 0.03, 128000),
Model("gpt-3.5-turbo", 0.001, 0.002, 16384),
Model("gpt-3.5-turbo-1106", 0.001, 0.002, 16384),
]
_model_dict = {model.name: model for model in models}

0 comments on commit 9986f4c

Please sign in to comment.