import { IBot } from "@gratico/sdk";
export const vueBot: IBot = {
id: "vue",
trigger: "vue",
config: {
schema: {},
},
async instructions(prompt, config) {
return [
"Create the component using vue framework(https://vuejs.org/) and by using JSX with typescript instead of Single File Component. Add the jsx comment/annotation to the top of the file.",
];
},
output: {
async processor(str) {
return {
raw: str,
formatted: str,
actions: [],
summary: {
formatted: "created with vue",
},
};
},
},
};
``
-
Notifications
You must be signed in to change notification settings - Fork 0
sdk for apps on @gratico platform
gratico/sdk
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Releases
No releases published
Packages 0
No packages published