Skip to content

Commit

Permalink
Show attachment types in llm models --options, closes #612
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Nov 6, 2024
1 parent 1a60fa1 commit 12df1a3
Show file tree
Hide file tree
Showing 6 changed files with 250 additions and 215 deletions.
4 changes: 2 additions & 2 deletions docs/aliases.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ result = CliRunner().invoke(cli, ["aliases", "list"])
cog.out("```\n{}```".format(result.output))
]]] -->
```
4o : gpt-4o
4o-mini : gpt-4o-mini
3.5 : gpt-3.5-turbo
chatgpt : gpt-3.5-turbo
chatgpt-16k : gpt-3.5-turbo-16k
Expand All @@ -29,8 +31,6 @@ gpt4 : gpt-4
gpt-4-turbo-preview : gpt-4-turbo
4-turbo : gpt-4-turbo
4t : gpt-4-turbo
4o : gpt-4o
4o-mini : gpt-4o-mini
3.5-instruct : gpt-3.5-turbo-instruct
chatgpt-instruct : gpt-3.5-turbo-instruct
ada : ada-002 (embedding)
Expand Down
6 changes: 3 additions & 3 deletions docs/openai-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ models = [line for line in result.output.split("\n") if line.startswith("OpenAI
cog.out("```\n{}\n```".format("\n".join(models)))
]]] -->
```
OpenAI Chat: gpt-4o (aliases: 4o)
OpenAI Chat: gpt-4o-mini (aliases: 4o-mini)
OpenAI Chat: gpt-4o-audio-preview
OpenAI Chat: gpt-3.5-turbo (aliases: 3.5, chatgpt)
OpenAI Chat: gpt-3.5-turbo-16k (aliases: chatgpt-16k, 3.5-16k)
OpenAI Chat: gpt-4 (aliases: 4, gpt4)
Expand All @@ -39,9 +42,6 @@ OpenAI Chat: gpt-4-1106-preview
OpenAI Chat: gpt-4-0125-preview
OpenAI Chat: gpt-4-turbo-2024-04-09
OpenAI Chat: gpt-4-turbo (aliases: gpt-4-turbo-preview, 4-turbo, 4t)
OpenAI Chat: gpt-4o (aliases: 4o)
OpenAI Chat: gpt-4o-mini (aliases: 4o-mini)
OpenAI Chat: gpt-4o-audio-preview
OpenAI Chat: o1-preview
OpenAI Chat: o1-mini
OpenAI Completion: gpt-3.5-turbo-instruct (aliases: 3.5-instruct, chatgpt-instruct)
Expand Down
Loading

0 comments on commit 12df1a3

Please sign in to comment.