mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
feat(experimental): FunctionsAgent, uses new function payload for tooling
This commit is contained in:
parent
550e566097
commit
3caddd6854
8 changed files with 227 additions and 52 deletions
|
|
@ -53,7 +53,7 @@ router.get('/', async function (req, res) {
|
|||
? { availableModels: getOpenAIModels(), userProvide: apiKey === 'user_provided' }
|
||||
: false;
|
||||
const gptPlugins = apiKey
|
||||
? { availableModels: getPluginModels(), availableTools }
|
||||
? { availableModels: getPluginModels(), availableTools, availableAgents: ['classic', 'functions'] }
|
||||
: false;
|
||||
const bingAI = process.env.BINGAI_TOKEN
|
||||
? { userProvide: process.env.BINGAI_TOKEN == 'user_provided' }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue