Sök och navigera bland systemets tillgängliga JavaScript-gränssnitt, klasser, metoder, enums och tillhörande beskrivningar.
class HTMLLinkParseInterface {
static async parseLinks({
url,
html
}) {}
}
class HttpFetchInterface {
static async fetch({
input,
init
}) {}
}
class PerplexityRESTAPIInterface {
async text({
modelName
}) {}
getFetchInterface({}) {}
setFetchInterface({
fetchInterface
}) {}
}
class ProxyConfig {
static get ProxyType() {
return {
SOCKS5: 'SOCKS5',
HTTP: 'HTTP'
};
}
getHost({}) {}
setHost({
host
}) {}
getPort({}) {}
setPort({
port
}) {}
getUsername({}) {}
setUsername({
username
}) {}
getPassword({}) {}
setPassword({
password
}) {}
getProxyType({}) {}
setProxyType({
type
}) {}
}
class SplinternetInterface {}
class XGBoostCodeGenServiceInterface {
static get CodeGenLanguage() {
return {
C: 'c',
JAVASCRIPT: 'javascript',
PYTHON: 'python',
JAVA: 'java'
};
}
async parseXGBoostModel({
modelJson,
options
}) {}
async generateSourceCode({
modelSchema,
targetLanguage,
config
}) {}
async generatePredictionFunction({
features,
modelJson,
targetLanguage
}) {}
}