1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Google Gemini APIを利用したPythonプログラムを開始

Last updated at Posted at 2024-11-03

はじめ

Google Gemini APIの生成AIを利用して、Pythonでプログラミングを始める手順を紹介する。

環境準備

  • 前提
    • Pythonインストール済み
  1. 下記のコマンドでGemini API SDKをインストールする

    pip install -q -U google-generativeai
    
  2. Gemini APIキーを設定する

  3. APIキー取得リンクでAPIキーを取得する

    • 必要なもの
      • Googleアカウント
    • 注意事項
      • API キーを共有したり公開コードに埋め込んだりしないでください
  4. 下記コマンドでAPIキーを設定する

    export API_KEY=<YOUR_API_KEY>
    

    <YOUR_API_KEY>を生成されたAPIキーを置換する

Gemini APIを利用したPython言語での開発

# テキスト生成の例

import google.generativeai as genai
import os

# APIキーを設定 
genai.configure(api_key=os.environ["API_KEY"])

# Gemini API モデルを選択
model = genai.GenerativeModel("gemini-1.5-flash")

# APIを利用
user_input = input("知りたいことを聞いてください: ")
response = model.generate_content(user_input)
print(response.text)

その他

  1. APIリファレンス

  2. Gemini API 料金

  3. GITHUB その他のサンプル

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?