-
Notifications
You must be signed in to change notification settings - Fork 0
prototyped #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prototyped #1
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 5 out of 9 changed files in this pull request and generated 1 comment.
Files not reviewed (4)
- .npmignore: Language not supported
- calcit.cirru: Language not supported
- compact.cirru: Language not supported
- package.json: Language not supported
Comments suppressed due to low confidence (1)
src/main.mts:24
- The call to getGenerativeModel passes multiple configuration objects separately. Ensure that the API expects separate objects; otherwise, merge the configurations into a single object.
{ baseUrl: "https://sf.chenyong.life" }
| @@ -0,0 +1,3 @@ | |||
| #!/usr/bin/env node | |||
|
|
|||
| import "./lib/main.mjs"; | |||
Copilot
AI
Apr 6, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The import path in bin.mjs points to './lib/main.mjs' while the main module is defined in 'src/main.mts'. Update the import path to correctly reference the intended module.
| import "./lib/main.mjs"; | |
| import "../src/main.mts"; |
No description provided.