mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import React from "react";
|
|
import { TaskOptions } from "./TaskOptions";
|
|
import { Flex } from "@chakra-ui/react";
|
|
import { TaskOption } from "./TaskOption";
|
|
|
|
export const TaskSelection = () => {
|
|
return (
|
|
<Flex gap={10} wrap="wrap" justifyContent="space-evenly" width="full" height="full" alignItems={"center"}>
|
|
<TaskOptions key="create" title="Create">
|
|
{/* <TaskOption
|
|
alt="Summarize Stories"
|
|
img="/images/logos/logo.svg"
|
|
title="Summarize stories"
|
|
link="/create/summarize_story"
|
|
/> */}
|
|
<TaskOption alt="Reply as User" img="/images/logos/logo.svg" title="Reply as User" link="/create/user_reply" />
|
|
<TaskOption
|
|
alt="Reply as Assistant"
|
|
img="/images/logos/logo.svg"
|
|
title="Reply as Assistant"
|
|
link="/create/assistant_reply"
|
|
/>
|
|
</TaskOptions>
|
|
<TaskOptions key="evaluate" title="Evaluate">
|
|
{/* <TaskOption
|
|
alt="Rate Prompts"
|
|
img="/images/logos/logo.svg"
|
|
title="Rate Prompts"
|
|
link="/evaluate/rate_summary"
|
|
/> */}
|
|
<TaskOption
|
|
alt="Rank Initial Prompts"
|
|
img="/images/logos/logo.svg"
|
|
title="Rank Initial Prompts"
|
|
link="/evaluate/rank_initial_prompts"
|
|
/>
|
|
</TaskOptions>
|
|
</Flex>
|
|
);
|
|
};
|