G
google-gemini-embeddings
by @jezwebv1.0.0
0.0(0)
Skills for Claude Code CLI such as full stack dev Cloudflare, React, Tailwind v4, and AI integrations.
安装方式
npx skills add jezweb/claude-skills --skill google-gemini-embeddingscompare_arrows
Before / After 效果对比
1 组使用前
1手动调用和管理Google Gemini嵌入API,需要处理认证、请求格式和错误处理,集成过程复杂且容易出错。
2```python
3import requests
4
5api_key = "YOUR_API_KEY"
6headers = {"Content-Type": "application/json"}
7url = f"https://generativelanguage.googleapis.com/v1beta/models/embedding-001:embedContent?key={api_key}"
8
9data = {"content": {"parts": [{"text": "Hello world"}]}}
10response = requests.post(url, headers=headers, json=data)
11embeddings = response.json()['embedding']['values']
12```使用后
1轻松集成Google Gemini嵌入模型,用于文本相似度、搜索和推荐等AI应用,简化开发,提高效率。
2```python
3import google.generativeai as genai
4
5genai.configure(api_key="YOUR_API_KEY")
6
7model = genai.get_model('embedding-001')
8result = model.embed_content(content="Hello world")
9embeddings = result['embedding']['values']
10```description SKILL.md
google-gemini-embeddings
Skills for Claude Code CLI such as full stack dev Cloudflare, React, Tailwind v4, and AI integrations.
Tags: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite
Source: jezweb/claude-skills
Stars: 611
forum用户评价 (0)
发表评价
效果
易用性
文档
兼容性
暂无评价,来写第一条吧
统计数据
安装量0
评分0.0 / 5.0
版本1.0.0
更新日期2026年3月17日
对比案例1 组
用户评分
0.0(0)
5
0%
4
0%
3
0%
2
0%
1
0%
为此 Skill 评分
0.0
兼容平台
🔧Claude Code
时间线
创建2026年3月17日
最后更新2026年3月17日