mirror of
https://github.com/jehna/humanify.git
synced 2026-04-27 17:45:58 +03:00
[GH-ISSUE #4] Add support for OpenAI's GPT-4 turbo (gpt-4-1106-preview) model + GPT-4o + GPT-4o mini #2
Labels
No labels
bug
enhancement
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/humanify#2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @0xdevalias on GitHub (Nov 13, 2023).
Original GitHub issue: https://github.com/jehna/humanify/issues/4
Since OpenAI released the GPT-4 Turbo model (
gpt-4-1106-preview) and reduced the prices of GPT-4 at their recent dev day, it would be cool if this tool was able to support using those as well.Further Reading
See Also
@0xdevalias commented on GitHub (Nov 13, 2023):
A quick search of the repo suggest changes would need to be made to at least the following files:
@jehna commented on GitHub (Nov 13, 2023):
Yes, great point! I think it would make sense to even parametrize the model as a command line argument 🤔
@0xdevalias commented on GitHub (Nov 13, 2023):
Yeah, I was thinking that too. Though maybe it can still have some 'friendly aliases' built in or similar so that the end user doesn't need to know the exact model name they need (specifically thinking about the current preview version of
gpt-4-turboin particular).There are API's for querying the models available too, so if you wanted to get really fancy and not hardcode things, the CLI could potentially fetch the available models from that URL and cache them, then tell the user which ones could be used. Though that might be overkill.
@0xdevalias commented on GitHub (Jul 19, 2024):
GPT-4o mini was announced today; ~60% cheaper than GPT-3.5 Turbo:
@0xdevalias commented on GitHub (Aug 12, 2024):
@0xdevalias commented on GitHub (Aug 12, 2024):
Since the v2 CLI's OpenAI feature seems to allow the model name to be specified via
--model, and defaults togpt-4o-mini, I consider this issue implemented now:github.com/jehna/humanify@a6b09993dd/src/commands/openai.ts (L9-L12)See also: