Gemini API Gemini、Veo、Nano Banana などを使用して、プロンプトから本番環境までを最速で実現します。 from google import genai client = genai.Client() response = client.models.generate_content( model="gemini-3-flash-preview", contents="Explain how AI works in a few words", ) print(response.text) JavaScript import { GoogleGenAI } from "@google/genai"; const ai = new GoogleGenAI({}); async function main() { const response = await ai.m

