From 224e23a3a0f9efd3c4f9e154d413462a708a9726 Mon Sep 17 00:00:00 2001 From: Arshad Yaseen Date: Mon, 26 Aug 2024 13:40:09 +0530 Subject: [PATCH] Update package.json --- package.json | 1 - tests/ui/src/app/api/copilot/route.ts | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/package.json b/package.json index ab7ec3af..bbcfe6b3 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,6 @@ "auto-completion", "github-copilot" ], - "homepage": "https://monacopilot.vercel.app", "repository": { "type": "git", "url": "https://github.com/arshad-yaseen/monacopilot" diff --git a/tests/ui/src/app/api/copilot/route.ts b/tests/ui/src/app/api/copilot/route.ts index 33cad203..70697676 100644 --- a/tests/ui/src/app/api/copilot/route.ts +++ b/tests/ui/src/app/api/copilot/route.ts @@ -1,9 +1,6 @@ import {Copilot} from 'monacopilot'; -const copilot = new Copilot(process.env.GROQ_API_KEY!, { - provider: 'groq', - model: 'llama-3-70b', -}); +const copilot = new Copilot(process.env.GROQ_API_KEY!); export async function POST(req: Request) { const body = await req.json();