Merge main into fix-mobile-download, resolve conflicts#295
Merge main into fix-mobile-download, resolve conflicts#295
Conversation
✅ Deploy Preview for sprightly-genie-998c07 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "dependencies": { | ||
| "@google/generative-ai": "^0.24.1", | ||
| "chart.js": "^4.5.0", | ||
| "chartjs-plugin-annotation": "^3.1.0", |
There was a problem hiding this comment.
Removing @google/generative-ai leaves unresolved import
package.json no longer declares @google/generative-ai, but lib/llm.ts still imports GoogleGenerativeAI from that package. Running the usual install/build (e.g. npm install && npm run build) will now fail with “Cannot find module '@google/generative-ai'” because the module will not be installed. Unless the Gemini integration is removed elsewhere, this dependency needs to stay in the manifest to keep the build working.
Useful? React with 👍 / 👎.
There was a problem hiding this comment.
@copilot I no longer use Gemini for the chatbot. I use Perplexity API. That's the module isn't there.
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull Request Overview
This PR merges the main branch into fix-mobile-download and resolves dependency conflicts. The primary change removes the obsolete @google/generative-ai dependency, which was already eliminated during the October 2025 migration from Gemini to Perplexity API for the Poetic Brain component.
- Removes unused
@google/generative-aipackage dependency

No description provided.