Skip to content

Commit

Permalink
- add models
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteMagic2014 committed May 14, 2024
1 parent 9754c5c commit 0436a3d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ new CreateChatCompletionRequest()

## Version

### 1.9.6

- Add new models in GptModel. (gpt-4o)

### 1.9.5

- Update: The CreateChatCompletionRequest now includes a new method, sendForResponse, which returns a
Expand Down
9 changes: 9 additions & 0 deletions src/main/java/com/github/WhiteMagic2014/gptApi/GptModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@
**/
public class GptModel {

/**
* gpt-4o 128,000 tokens Up to Oct 2023
*/
public final static String gpt_4o = "gpt-4o";
/**
* gpt-4o-2024-05-13 128,000 tokens Up to Oct 2023
*/
public final static String gpt_4o_0513 = "gpt-4o-2024-05-13";


// GPT-4 and GPT-4 Turbo
/**
Expand Down

0 comments on commit 0436a3d

Please sign in to comment.