From 0415b37dc12d89d4d5e883f8322732095012c93b Mon Sep 17 00:00:00 2001 From: Shariq Date: Sat, 26 Oct 2024 15:51:56 +0530 Subject: [PATCH 1/3] Added Gemini AI Integration Interface --- package.json | 5 +++++ src/app/(pages)/api/generate/route.js | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 src/app/(pages)/api/generate/route.js diff --git a/package.json b/package.json index cba5840..a0d3a1d 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,11 @@ "lint": "next lint" }, "dependencies": { + "@emotion/react": "^11.13.3", + "@emotion/styled": "^11.13.0", + "@google/generative-ai": "^0.21.0", + "@mui/icons-material": "^6.1.5", + "@mui/material": "^6.1.5", "@radix-ui/react-aspect-ratio": "^1.1.0", "@radix-ui/react-collapsible": "^1.1.1", "@radix-ui/react-dialog": "^1.1.2", diff --git a/src/app/(pages)/api/generate/route.js b/src/app/(pages)/api/generate/route.js new file mode 100644 index 0000000..0f7c501 --- /dev/null +++ b/src/app/(pages)/api/generate/route.js @@ -0,0 +1,17 @@ +import { GoogleGenerativeAI } from '@google/generative-ai'; + +const genAI = new GoogleGenerativeAI(process.env.GEMINI_API_KEY); + +export async function POST(req) { + const { prompt } = await req.json(); + try { + const model = genAI.getGenerativeModel({ model: 'gemini-pro' }); + const result = await model.generateContent(prompt); + const response = await result.response; + const generatedText = await response.text(); + + return new Response(JSON.stringify({ generatedText }), { status: 200 }); + } catch (error) { + return new Response(error.message, { status: 500 }); + } +} From c8c75fd6a670c32c3315b50c4424fae2b7909ea5 Mon Sep 17 00:00:00 2001 From: Shariq Date: Sat, 26 Oct 2024 16:23:13 +0530 Subject: [PATCH 2/3] Added Sample .env file --- .env.sample | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .env.sample diff --git a/.env.sample b/.env.sample new file mode 100644 index 0000000..f875b1a --- /dev/null +++ b/.env.sample @@ -0,0 +1,3 @@ +GEMINI_API_KEY='Add your Gemini API Key' + +# Also rename this file as .env \ No newline at end of file From 02ec447d87c94c623b72747f8813a1e3df195a8a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 11:06:02 +0000 Subject: [PATCH 3/3] Update repo structure --- PROJECT_STRUCTURE.md | 24 +++++++++++++++++++++++- repo_structure.txt | 24 +++++++++++++++++++++++- 2 files changed, 46 insertions(+), 2 deletions(-) diff --git a/PROJECT_STRUCTURE.md b/PROJECT_STRUCTURE.md index 36e437a..a18dcaa 100644 --- a/PROJECT_STRUCTURE.md +++ b/PROJECT_STRUCTURE.md @@ -18,6 +18,13 @@ │ ├── Newsletter.png │ ├── avatar.png │ ├── avatar1.png +│ ├── dev1.jpeg +│ ├── dev2.jpeg +│ ├── dev3.jpeg +│ ├── dev4.jpeg +│ ├── dev5.jpeg +│ ├── dev6.jpeg +│ ├── dev7.jpeg │ ├── goal.webp │ ├── hack1.jpg │ ├── img1.jpg @@ -44,6 +51,10 @@ │ │ │ │ └── page.jsx │ │ │ ├── Hackathon/ │ │ │ │ ├── Card.jsx +│ │ │ │ ├── [id]/ +│ │ │ │ │ └── page.jsx +│ │ │ │ └── page.jsx +│ │ │ ├── PrivacyPolicy/ │ │ │ │ └── page.jsx │ │ │ ├── Projects/ │ │ │ │ ├── Card.jsx @@ -53,6 +64,8 @@ │ │ │ │ │ └── page.jsx │ │ │ │ ├── page.jsx │ │ │ │ └── resources.js +│ │ │ ├── RulesAndRegulations/ +│ │ │ │ └── page.jsx │ │ │ ├── SignIn/ │ │ │ │ └── page.jsx │ │ │ ├── SignUp/ @@ -65,8 +78,15 @@ │ │ │ ├── TeamsGallery/ │ │ │ │ ├── Teams.js │ │ │ │ └── page.jsx -│ │ │ └── careers/ +│ │ │ ├── TermsAndConditions/ +│ │ │ │ └── page.jsx +│ │ │ ├── careers/ +│ │ │ │ └── page.jsx +│ │ │ └── localdev/ │ │ │ └── page.jsx +│ │ ├── api/ +│ │ │ └── subscribe/ +│ │ │ └── route.js │ │ ├── favicon.ico │ │ ├── fonts/ │ │ │ ├── GeistMonoVF.woff @@ -79,6 +99,8 @@ │ │ ├── not-found.jsx │ │ └── page.js │ ├── components/ +│ │ ├── Chatbot.jsx +│ │ ├── GTranslateLoader.js │ │ ├── Global/ │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx diff --git a/repo_structure.txt b/repo_structure.txt index 3b80648..d7ca65d 100644 --- a/repo_structure.txt +++ b/repo_structure.txt @@ -14,6 +14,13 @@ │ ├── Newsletter.png │ ├── avatar.png │ ├── avatar1.png +│ ├── dev1.jpeg +│ ├── dev2.jpeg +│ ├── dev3.jpeg +│ ├── dev4.jpeg +│ ├── dev5.jpeg +│ ├── dev6.jpeg +│ ├── dev7.jpeg │ ├── goal.webp │ ├── hack1.jpg │ ├── img1.jpg @@ -40,6 +47,10 @@ │ │ │ │ └── page.jsx │ │ │ ├── Hackathon/ │ │ │ │ ├── Card.jsx +│ │ │ │ ├── [id]/ +│ │ │ │ │ └── page.jsx +│ │ │ │ └── page.jsx +│ │ │ ├── PrivacyPolicy/ │ │ │ │ └── page.jsx │ │ │ ├── Projects/ │ │ │ │ ├── Card.jsx @@ -49,6 +60,8 @@ │ │ │ │ │ └── page.jsx │ │ │ │ ├── page.jsx │ │ │ │ └── resources.js +│ │ │ ├── RulesAndRegulations/ +│ │ │ │ └── page.jsx │ │ │ ├── SignIn/ │ │ │ │ └── page.jsx │ │ │ ├── SignUp/ @@ -61,8 +74,15 @@ │ │ │ ├── TeamsGallery/ │ │ │ │ ├── Teams.js │ │ │ │ └── page.jsx -│ │ │ └── careers/ +│ │ │ ├── TermsAndConditions/ +│ │ │ │ └── page.jsx +│ │ │ ├── careers/ +│ │ │ │ └── page.jsx +│ │ │ └── localdev/ │ │ │ └── page.jsx +│ │ ├── api/ +│ │ │ └── subscribe/ +│ │ │ └── route.js │ │ ├── favicon.ico │ │ ├── fonts/ │ │ │ ├── GeistMonoVF.woff @@ -75,6 +95,8 @@ │ │ ├── not-found.jsx │ │ └── page.js │ ├── components/ +│ │ ├── Chatbot.jsx +│ │ ├── GTranslateLoader.js │ │ ├── Global/ │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx