diff --git a/README.md b/README.md
index abe933061..d4e304f9d 100644
--- a/README.md
+++ b/README.md
@@ -343,6 +343,7 @@ If you want to add a new translation, read this [document](./docs/translation.md
[@synwith](https://github.com/synwith)
[@piksonGit](https://github.com/piksonGit)
[@ouyangzhiping](https://github.com/ouyangzhiping)
+[@wenjiavv](https://github.com/wenjiavv)
### Contributor
diff --git a/app/components/model-config.tsx b/app/components/model-config.tsx
index 1c730e144..214a18c79 100644
--- a/app/components/model-config.tsx
+++ b/app/components/model-config.tsx
@@ -25,11 +25,13 @@ export function ModelConfigList(props: {
);
}}
>
- {allModels.map((v, i) => (
-
- ))}
+ {allModels
+ .filter((v) => v.available)
+ .map((v, i) => (
+
+ ))}