Google Gemini 也有 js 版本的 API 了!

humbass · 前天 16:08 · 412 次点击

上次看到 @Livid 分享的 python 版本的 https://www.fshex.com/t/1100770

今天上去看了下也有 js 版本了

github: https://github.com/google-gemini/generative-ai-js

const { getGenerativeModel } = require('@google-gemini/generative-ai-js')

async function generateText() {
  const model = await getGenerativeModel({ model: 'gemini-pro' })
  const request = { prompt: '请写一个 js 版本的 websocket 服务' }
  const response = await model.generateContent(request)
  // print response text
  console.log(response.text)
}
generateText()

举报· 412 次点击
登录 注册 站外分享
3 条回复  
zfjdif 小成 前天 16:18
啊,不是一直都有吗。AIStudio 中 Get Code 你甚至可以选择:Go 、Dart 、Swift 、Kotlin 等
humbass 楼主 小成 前天 16:26
@zfjdif 官方公布的只有三种: https://ai.google.dev/gemini-api/docs?hl=zh-cn python,nodejs,rust
tw2ex 小成 前天 16:30
感谢!我都不知道也有 api
返回顶部