|
|
@@ -99,7 +99,6 @@ export const Azure = {
|
|
|
export const Google = {
|
|
|
ExampleEndpoint: "https://generativelanguage.googleapis.com/",
|
|
|
ChatPath: (modelName: string) => `v1beta/models/${modelName}:generateContent`,
|
|
|
- VisionChatPath: (modelName: string) => `v1beta/models/${modelName}:generateContent`,
|
|
|
};
|
|
|
|
|
|
export const DEFAULT_INPUT_TEMPLATE = `{{input}}`; // input / time / model / lang
|
|
|
@@ -128,8 +127,6 @@ export const KnowledgeCutOffDate: Record<string, string> = {
|
|
|
"gpt-4-turbo": "2023-12",
|
|
|
"gpt-4-turbo-2024-04-09": "2023-12",
|
|
|
"gpt-4-turbo-preview": "2023-12",
|
|
|
- "gpt-4-1106-preview": "2023-04",
|
|
|
- "gpt-4-0125-preview": "2023-12",
|
|
|
"gpt-4-vision-preview": "2023-04",
|
|
|
// After improvements,
|
|
|
// it's now easier to add "KnowledgeCutOffDate" instead of stupid hardcoding it, as was done previously.
|
|
|
@@ -139,19 +136,11 @@ export const KnowledgeCutOffDate: Record<string, string> = {
|
|
|
|
|
|
const openaiModels = [
|
|
|
"gpt-3.5-turbo",
|
|
|
- "gpt-3.5-turbo-0301",
|
|
|
- "gpt-3.5-turbo-0613",
|
|
|
"gpt-3.5-turbo-1106",
|
|
|
"gpt-3.5-turbo-0125",
|
|
|
- "gpt-3.5-turbo-16k",
|
|
|
- "gpt-3.5-turbo-16k-0613",
|
|
|
"gpt-4",
|
|
|
- "gpt-4-0314",
|
|
|
"gpt-4-0613",
|
|
|
- "gpt-4-1106-preview",
|
|
|
- "gpt-4-0125-preview",
|
|
|
"gpt-4-32k",
|
|
|
- "gpt-4-32k-0314",
|
|
|
"gpt-4-32k-0613",
|
|
|
"gpt-4-turbo",
|
|
|
"gpt-4-turbo-preview",
|