mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-04-07 14:04:35 +08:00
20 lines
237 B
JavaScript
20 lines
237 B
JavaScript
"use strict";
|
|
|
|
class Provider extends AI.Provider {
|
|
|
|
constructor() {
|
|
super("GPT4All", "http://localhost:4891", "", "v1");
|
|
}
|
|
|
|
getRequestBodyOptions() {
|
|
return {
|
|
max_tokens : 4096
|
|
};
|
|
}
|
|
|
|
isOnlyDesktop() {
|
|
return true;
|
|
}
|
|
|
|
}
|