Spaces:
Build error
Build error
File size: 1,288 Bytes
b59aa07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import { I18nKey } from "#/i18n/declaration";
export interface Tip {
key: I18nKey;
link?: string;
}
export const TIPS: Tip[] = [
{
key: I18nKey.TIPS$CUSTOMIZE_MICROAGENT,
link: "https://docs.all-hands.dev/usage/prompting/microagents-repo",
},
{
key: I18nKey.TIPS$SETUP_SCRIPT,
link: "https://docs.all-hands.dev/usage/customization/repository",
},
{ key: I18nKey.TIPS$VSCODE_INSTANCE },
{ key: I18nKey.TIPS$SAVE_WORK },
{
key: I18nKey.TIPS$SPECIFY_FILES,
link: "https://docs.all-hands.dev/usage/prompting/prompting-best-practices",
},
{
key: I18nKey.TIPS$HEADLESS_MODE,
link: "https://docs.all-hands.dev/usage/how-to/headless-mode",
},
{
key: I18nKey.TIPS$CLI_MODE,
link: "https://docs.all-hands.dev/usage/how-to/cli-mode",
},
{
key: I18nKey.TIPS$GITHUB_HOOK,
link: "https://docs.all-hands.dev/usage/cloud/github-installation#working-on-github-issues-and-pull-requests-using-openhands",
},
{
key: I18nKey.TIPS$BLOG_SIGNUP,
link: "https://www.all-hands.dev/blog",
},
{
key: I18nKey.TIPS$API_USAGE,
link: "https://docs.all-hands.dev/swagger-ui/",
},
];
export function getRandomTip(): Tip {
const randomIndex = Math.floor(Math.random() * TIPS.length);
return TIPS[randomIndex];
}
|