mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-09 06:33:05 -04:00
12 lines
No EOL
379 B
JavaScript
12 lines
No EOL
379 B
JavaScript
module.exports = {
|
|
description: 'Generate text via Large Language Models',
|
|
name: 'gpt',
|
|
options: [
|
|
require('../subcommands/gpt/chatgpt'),
|
|
require('../subcommands/gpt/stablelm'),
|
|
require('../subcommands/gpt/davinci3'),
|
|
//require('../subcommands/gpt/claude'),
|
|
//require('../subcommands/gpt/claude-instant'),
|
|
require('../subcommands/gpt/alpaca')
|
|
]
|
|
}; |