diff --git a/README.md b/README.md
index eb1d6f9..6bc8788 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,18 @@
-This project is deployed here: https://outfitanyone.site
+# 算法妈妈虚拟试衣服务
+## 简介
+通过选定(模特,上装,下装)这个三元组,以达到搭配试衣效果。
+## TODOs
+* 修复此虚拟试衣服务
+* 完整搭配而非两件套
+
+## 线上服务
+[免费使用](https://tryon.suanfamama.com)
+
+## 附加信息
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
-## Getting Started
+### Getting Started
First, run the development server:
@@ -16,17 +26,17 @@ pnpm dev
bun dev
```
-Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+Open [http://localhost:3001](http://localhost:3001) with your browser to see the result.
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
-[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
+[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3001/api/hello](http://localhost:3001/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
-## Learn More
+### Learn More
To learn more about Next.js, take a look at the following resources:
@@ -35,7 +45,7 @@ To learn more about Next.js, take a look at the following resources:
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
-## Deploy on Vercel
+### Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
diff --git a/components/ImagePipeline/ImageUploader.tsx b/components/ImagePipeline/ImageUploader.tsx
index d917c62..c479acd 100644
--- a/components/ImagePipeline/ImageUploader.tsx
+++ b/components/ImagePipeline/ImageUploader.tsx
@@ -18,7 +18,7 @@ export default function ImageUploader({ imageList = [], onUpload, onPick }) {
const randomString = generateRandomString();
const response = await fetch(
- `https://humanaigc-outfitanyone.hf.space/--replicas/o90fr/upload?upload_id=${randomString}`,
+ `https://humanaigc-outfitanyone.hf.space/upload?upload_id=${randomString}`,
{
method: "POST",
body: formData,
@@ -54,7 +54,10 @@ export default function ImageUploader({ imageList = [], onUpload, onPick }) {
return (