A set-image-style plugin for MulmoChat.
This plugin allows users to configure the image generation style (realistic, anime, cartoon, etc.) that will be used by the image generation plugin.
yarn add @gui-chat-plugin/set-image-style gui-chat-protocol
gui-chat-protocolis a peer dependency — install it alongside the plugin; the host application provides the runtime and this plugin only declares the compatible range.
// In src/tools/index.ts
import SetImageStylePlugin from "@gui-chat-plugin/set-image-style/vue";
const pluginList = [
// ... other plugins
SetImageStylePlugin,
];
// In src/main.ts
import "@gui-chat-plugin/set-image-style/style.css";import { pluginCore, TOOL_NAME } from "@gui-chat-plugin/set-image-style";| Export | Description |
|---|---|
@gui-chat-plugin/set-image-style |
Core (framework-agnostic) |
@gui-chat-plugin/set-image-style/vue |
Vue implementation |
@gui-chat-plugin/set-image-style/style.css |
Tailwind CSS styles |
- "Set the image style to anime"
- "Change the image generation style to realistic"
- "I want cartoon-style images"
- "Use photorealistic style for images"
yarn install
yarn dev # Start dev server
yarn build # Build
yarn typecheck # Type check
yarn lint # LintMIT
- Protocol spec: gui-chat-protocol
- Reference implementations using this protocol: mulmoclaude · MulmoChat