Skip to content

Commit

Permalink
Fix - We deleted Dall-E plugin and fixed a bug that didnt let save as…
Browse files Browse the repository at this point in the history
…sistant's tools
  • Loading branch information
Enrique Pedroza committed Oct 23, 2024
1 parent 26cd645 commit 3716967
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 15 deletions.
13 changes: 0 additions & 13 deletions api/app/clients/tools/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,6 @@
}
]
},
{
"name": "DALL-E",
"pluginKey": "dall-e",
"description": "Create realistic images and art from a description in natural language",
"icon": "https://i.imgur.com/u2TzXzH.png",
"authConfig": [
{
"authField": "DALLE2_API_KEY||DALLE_API_KEY",
"label": "OpenAI API Key",
"description": "You can use DALL-E with your API Key from OpenAI."
}
]
},
{
"name": "DALL-E-3",
"pluginKey": "dalle",
Expand Down
2 changes: 1 addition & 1 deletion api/server/controllers/assistants/v1.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const patchAssistant = async (req, res) => {
* @Organization Intelequia
* @Author Enrique M. Pedroza Castillo
*/
if(isToolEnabled(tool)){
if(await isToolEnabled(tool)){
return await GetToolSpecification(tool)
}

Expand Down
1 change: 0 additions & 1 deletion api/utils/intelequia/constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const enabledPluginsNames = [
"DALL-E",
"DALL-E-3",
"Azure AI Functions",
"Azure AI Search",
Expand Down

0 comments on commit 3716967

Please sign in to comment.