Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:24:54 +08:00
commit 7927519669
17 changed files with 4377 additions and 0 deletions

22
templates/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "gemini-embeddings-example",
"version": "1.0.0",
"description": "Google Gemini embeddings API examples",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@google/genai": "^1.27.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}