18 lines
801 B
JavaScript
Executable File
18 lines
801 B
JavaScript
Executable File
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.api = exports.SENSITIVE = exports.SENTIMENT = exports.NER = exports.TOKENIZE = exports.CHAT = exports.AIBOT = void 0;
|
|
exports.AIBOT = 'https://openai.weixin.qq.com/openapi/aibot';
|
|
exports.CHAT = 'https://openai.weixin.qq.com/openapi/message';
|
|
exports.TOKENIZE = 'https://openai.weixin.qq.com/openapi/nlp/tokenize';
|
|
exports.NER = 'https://openai.weixin.qq.com/openapi/nlp/ner';
|
|
exports.SENTIMENT = 'https://openai.weixin.qq.com/openapi/nlp/sentiment';
|
|
exports.SENSITIVE = 'https://openai.weixin.qq.com/openapi/nlp/sensitive';
|
|
exports.api = {
|
|
AIBOT: exports.AIBOT,
|
|
CHAT: exports.CHAT,
|
|
NER: exports.NER,
|
|
SENSITIVE: exports.SENSITIVE,
|
|
SENTIMENT: exports.SENTIMENT,
|
|
TOKENIZE: exports.TOKENIZE,
|
|
};
|