mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
docs: refresh ReMe Studio preview image (#501)
This commit is contained in:
parent
940a923f06
commit
d8d667c6ac
5 changed files with 9 additions and 11 deletions
|
|
@ -243,11 +243,6 @@ for (const product of productDocuments) {
|
|||
await cp(path.join(repoDir, product.source, filename), path.join(outputDir, product.source, filename));
|
||||
}
|
||||
}
|
||||
await mkdir(path.join(outputDir, "reme_studio", "public"), { recursive: true });
|
||||
await cp(
|
||||
path.join(repoDir, "reme_studio", "public", "og.jpg"),
|
||||
path.join(outputDir, "reme_studio", "public", "og.jpg"),
|
||||
);
|
||||
await writeFile(
|
||||
path.join(outputDir, "manifest.json"),
|
||||
`${JSON.stringify({ documents: await buildManifest() }, null, 2)}\n`,
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ ReMe Studio is the local web workspace for ReMe. It lets you browse and edit use
|
|||
links, and chat with the ReMe Agent without moving durable memory into a separate application database. Search indexes,
|
||||
graphs, and other derived metadata remain rebuildable from the source files.
|
||||
|
||||

|
||||

|
||||
|
||||
## Installation
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
ReMe Studio 是 ReMe 的本地 Web 工作区。你可以在这里浏览和编辑自己拥有的工作区文件、探索记忆之间的联系,并与 ReMe Agent
|
||||
对话,而无需将持久记忆迁移到独立的应用数据库中。搜索索引、图谱和其他派生元数据均可根据源文件重建。
|
||||
|
||||

|
||||

|
||||
|
||||
## 安装
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,9 @@ const geistMono = Geist_Mono({
|
|||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const remeStudioOgImage =
|
||||
"https://github.com/user-attachments/assets/7d0db0d4-69c5-49ef-b1ca-ef8c6cab1138";
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const requestHeaders = await headers();
|
||||
const host =
|
||||
|
|
@ -31,9 +34,9 @@ export async function generateMetadata(): Promise<Metadata> {
|
|||
description: "本地优先的 Agent 记忆工作区",
|
||||
images: [
|
||||
{
|
||||
url: "/og.jpg",
|
||||
width: 1200,
|
||||
height: 626,
|
||||
url: remeStudioOgImage,
|
||||
width: 2400,
|
||||
height: 1252,
|
||||
alt: "ReMe Studio memory workspace",
|
||||
},
|
||||
],
|
||||
|
|
@ -42,7 +45,7 @@ export async function generateMetadata(): Promise<Metadata> {
|
|||
card: "summary_large_image",
|
||||
title: "ReMe Studio",
|
||||
description: "本地优先的 Agent 记忆工作区",
|
||||
images: ["/og.jpg"],
|
||||
images: [remeStudioOgImage],
|
||||
},
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 114 KiB |
Loading…
Add table
Reference in a new issue