Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switches to multilingual Elevenlabs #181

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add march snapshot
  • Loading branch information
jp-ipu committed Oct 4, 2023
commit 9798e52a44cdc6e3c8ad4b563567935762aaa3c6
2 changes: 2 additions & 0 deletions app/src/core/chat/openai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,10 @@ export const maxTokensByModel = {
"gpt-3.5-turbo": 4096,
"gpt-4": 8192,
"gpt-4-0613": 8192,
"gpt-4-0314": 8192,
"gpt-4-32k": 32768,
"gpt-4-32k-0613": 32768,
"gpt-4-32k-0314": 32768,
"gpt-3.5-turbo-16k": 16384,
"gpt-3.5-turbo-0613": 4096,
"gpt-3.5-turbo-16k-0613": 16384,
Expand Down
14 changes: 10 additions & 4 deletions app/src/global-options/parameters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,18 @@ export const parameterOptions: OptionGroup = {
label: "GPT 4 Snapshot (June 13, 2023)",
value: "gpt-4-0613",
},

{
label: "GPT 4 32k Snapshot (June 13, 2023)",
label: "GPT 4 Snapshot (March 14, 2023)",
value: "gpt-4-0314",
},
{
label: "GPT 4 32k June Snapshot (required invite)",
value: "gpt-4-32k-0613",
},

{
label: "GPT 4 32k March Snapshot (required invite)",
value: "gpt-4-32k-0314",
},
{
label: "GPT 3.5 Turbo Snapshot (June 13, 2023)",
value: "gpt-3.5-turbo-0613",
Expand Down Expand Up @@ -87,4 +93,4 @@ export const parameterOptions: OptionGroup = {
})
}
]
};
};