chatgpt-plugin/models/chaite/user_mode_selector.js
2025-03-11 23:34:32 +08:00

12 lines
303 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { AbstractUserModeSelector } from 'chaite'
export class ChatGPTUserModeSelector extends AbstractUserModeSelector {
/**
* 根据e判断当前要使用的预设非常灵活。
* @param e
* @returns {Promise<import('chaite').ChatPreset>}
*/
getChatPreset (e) {
// todo
}
}