Skip to content

Commit

Permalink
Re-add recommendModel
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonEtco committed Aug 20, 2024
1 parent 355e886 commit 46a3c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app.post("/", verifySignatureMiddleware, express.json(), async (req, res) => {

// List of functions that are available to be called
const modelsAPI = new ModelsAPI(apiKey);
const functions = [listModels, describeModel, executeModel];
const functions = [listModels, describeModel, executeModel, recommendModel];

// Use the Copilot API to determine which function to execute
const capiClient = new OpenAI({
Expand Down

0 comments on commit 46a3c66

Please sign in to comment.