Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into r…
Browse files Browse the repository at this point in the history
…ender
  • Loading branch information
timothycarambat committed Nov 20, 2024
2 parents f39d865 + 5e69853 commit 3bebf98
Show file tree
Hide file tree
Showing 8 changed files with 490 additions and 0 deletions.
3 changes: 3 additions & 0 deletions collector/utils/files/mime.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ class MimeDetector {
"r",
"go",
"ino",
"hpp",
"linq",
"cs",
],
},
true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ export default function GeminiLLMOptions({ settings }) {
"gemini-1.5-pro-exp-0827",
"gemini-1.5-flash-exp-0827",
"gemini-1.5-flash-8b-exp-0827",
"gemini-exp-1114",
"learnlm-1.5-pro-experimental",
].map((model) => {
return (
<option key={model} value={model}>
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/hooks/useGetProvidersModels.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ const PROVIDER_DEFAULT_MODELS = {
"gemini-1.5-pro-exp-0827",
"gemini-1.5-flash-exp-0827",
"gemini-1.5-flash-8b-exp-0827",
"gemini-exp-1114",
"learnlm-1.5-pro-experimental",
],
anthropic: [
"claude-instant-1.2",
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/locales/resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import Italian from "./it/common.js";
import Portuguese from "./pt_BR/common.js";
import Hebrew from "./he/common.js";
import Dutch from "./nl/common.js";
import TraditionalChinese from "./zh_TW/common.js";

export const defaultNS = "common";
export const resources = {
Expand All @@ -34,6 +35,9 @@ export const resources = {
zh: {
common: Mandarin,
},
"zh-tw": {
common: TraditionalChinese,
},
es: {
common: Spanish,
},
Expand Down
Loading

0 comments on commit 3bebf98

Please sign in to comment.