mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-24 14:44:46 +08:00
feat: add suggestions
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
import {
|
||||
CompassIcon,
|
||||
GraduationCapIcon,
|
||||
ImageIcon,
|
||||
MicroscopeIcon,
|
||||
PenLineIcon,
|
||||
ShapesIcon,
|
||||
SparklesIcon,
|
||||
VideoIcon,
|
||||
} from "lucide-react";
|
||||
|
||||
import type { Translations } from "./types";
|
||||
|
||||
export const enUS: Translations = {
|
||||
@@ -29,6 +40,7 @@ export const enUS: Translations = {
|
||||
cancel: "Cancel",
|
||||
save: "Save",
|
||||
install: "Install",
|
||||
create: "Create",
|
||||
},
|
||||
|
||||
// Welcome
|
||||
@@ -62,6 +74,55 @@ export const enUS: Translations = {
|
||||
proModeDescription:
|
||||
"Reasoning, planning and executing, get more accurate results, may take more time",
|
||||
searchModels: "Search models...",
|
||||
suggestions: [
|
||||
{
|
||||
suggestion: "Write",
|
||||
prompt: "Write a blog post about the latest trends on [topic]",
|
||||
icon: PenLineIcon,
|
||||
},
|
||||
{
|
||||
suggestion: "Research",
|
||||
prompt:
|
||||
"Conduct a deep dive research on [topic], and summarize the findings.",
|
||||
icon: MicroscopeIcon,
|
||||
},
|
||||
{
|
||||
suggestion: "Collect",
|
||||
prompt: "Collect data from [source] and create a report.",
|
||||
icon: ShapesIcon,
|
||||
},
|
||||
{
|
||||
suggestion: "Learn",
|
||||
prompt: "Learn about [topic] and create a tutorial.",
|
||||
icon: GraduationCapIcon,
|
||||
},
|
||||
],
|
||||
suggestionsCreate: [
|
||||
{
|
||||
suggestion: "Webpage",
|
||||
prompt: "Create a webpage about [topic]",
|
||||
icon: CompassIcon,
|
||||
},
|
||||
{
|
||||
suggestion: "Image",
|
||||
prompt: "Create an image about [topic]",
|
||||
icon: ImageIcon,
|
||||
},
|
||||
{
|
||||
suggestion: "Video",
|
||||
prompt: "Create a video about [topic]",
|
||||
icon: VideoIcon,
|
||||
},
|
||||
{
|
||||
type: "separator",
|
||||
},
|
||||
{
|
||||
suggestion: "Skill",
|
||||
prompt:
|
||||
"We're going to build a new skill step by step with `skill-creator`. To start, what do you want this skill to do?",
|
||||
icon: SparklesIcon,
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
// Sidebar
|
||||
|
||||
Reference in New Issue
Block a user