{"id":80,"date":"2025-05-22T08:18:59","date_gmt":"2025-05-21T23:18:59","guid":{"rendered":"https:\/\/ohsland.kr\/?p=80"},"modified":"2025-05-22T08:18:59","modified_gmt":"2025-05-21T23:18:59","slug":"google-gemini-api-%ec%82%ac%ec%9a%a9%eb%b2%95-%ec%99%84%eb%b2%bd-%ea%b0%80%ec%9d%b4%eb%93%9c-%ed%85%8d%ec%8a%a4%ed%8a%b8-%ec%9d%b4%eb%af%b8%ec%a7%80-chat-%ec%98%88%ec%a0%9c-%ed%8f%ac%ed%95%a8","status":"publish","type":"post","link":"https:\/\/ohsland.kr\/?p=80","title":{"rendered":"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568)"},"content":{"rendered":"\n<p><strong>\uc124\uba85:<\/strong> Gemini API\ub97c \ud65c\uc6a9\ud574 Google\uc758 \ucd5c\uc2e0 AI \ubaa8\ub378\uc744 \ud14d\uc2a4\ud2b8 \ubc0f \uc774\ubbf8\uc9c0 \uae30\ubc18\uc73c\ub85c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc18c\uac1c\ud569\ub2c8\ub2e4. Python \uc608\uc81c\ubd80\ud130 REST API \ud638\ucd9c\uae4c\uc9c0 \uc0c1\uc138\ud55c \uc124\uba85\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<p><strong>\ud0dc\uadf8:<\/strong> Google Gemini, Gemini API, Google AI, Generative AI, Python, Chat API, Vision AI, Bard<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Gemini API\ub780?<\/h2>\n\n\n\n<p><strong>Gemini API<\/strong>\ub294 Google\uc774 \uc81c\uacf5\ud558\ub294 \uc0dd\uc131\ud615 AI API\ub85c, GPT \uacc4\uc5f4\uacfc \uc720\uc0ac\ud558\uac8c \ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, \ucf54\ub4dc \ub4f1\uc744 \uc0dd\uc131\ud560 \uc218 \uc788\ub294 \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \ud604\uc7ac\ub294 <strong>Gemini Pro<\/strong>, <strong>Gemini Pro Vision<\/strong> \ubaa8\ub378\uc744 \uc911\uc2ec\uc73c\ub85c \uc81c\uacf5\ub418\uace0 \uc788\uc73c\uba70, Python SDK \ub610\ub294 REST API\ub85c \uc27d\uac8c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\uae30\ubcf8 \uc900\ube44<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/console.cloud.google.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Google Cloud Console<\/a>\uc5d0 \ub85c\uadf8\uc778<\/li>\n\n\n\n<li>\uc0c8 \ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131<\/li>\n\n\n\n<li>Gemini API \ud65c\uc131\ud654<\/li>\n\n\n\n<li>API \ud0a4 \uc0dd\uc131<\/li>\n\n\n\n<li>\uc544\ub798 \uc608\uc81c\ub97c \ud1b5\ud574 \uc9c1\uc811 \ud14c\uc2a4\ud2b8 \uac00\ub2a5!<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">\ud14d\uc2a4\ud2b8 \uc785\ub825 \uc608\uc81c (gemini-pro)<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>import google.generativeai as genai\n\ngenai.configure(api_key=\"YOUR_API_KEY\")\n\nmodel = genai.GenerativeModel(\"gemini-pro\")\nresponse = model.generate_content(\"Explain quantum mechanics to a 10-year-old.\")\nprint(response.text)\n<\/code><\/pre>\n\n\n\n<p><strong>gemini-pro<\/strong> \ubaa8\ub378\uc740 \uace0\ud488\uc9c8 \ud14d\uc2a4\ud2b8 \uc0dd\uc131\uc5d0 \ud2b9\ud654\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\uc774\ubbf8\uc9c0 + \ud14d\uc2a4\ud2b8 \uc785\ub825 \uc608\uc81c (gemini-pro-vision)<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>import google.generativeai as genai\nfrom PIL import Image\n\ngenai.configure(api_key=\"YOUR_API_KEY\")\n\nmodel = genai.GenerativeModel(\"gemini-pro-vision\")\n\nimg = Image.open(\"example.jpg\")  # \uc608: \uc74c\uc2dd \uc0ac\uc9c4\n\nresponse = model.generate_content(\n    &#91;img, \"What kind of food is this and how healthy is it?\"]\n)\n\nprint(response.text)<\/code><\/pre>\n\n\n\n<p>Vision \ubaa8\ub378\uc740 \uc774\ubbf8\uc9c0\uc640 \ud14d\uc2a4\ud2b8\ub97c \ud568\uaed8 \uc774\ud574\ud569\ub2c8\ub2e4. OCR, \uc74c\uc2dd \uc778\uc2dd, \uc81c\ud488 \ubd84\ub958 \ub4f1\uc5d0 \ud65c\uc6a9 \uac00\ub2a5!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Chat \uae30\ubc18 \uc5f0\uc18d \ub300\ud654 \uc608\uc81c<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>import google.generativeai as genai\n\ngenai.configure(api_key=\"YOUR_API_KEY\")\n\nmodel = genai.GenerativeModel(\"gemini-pro\")\nchat = model.start_chat()\n\nresponse1 = chat.send_message(\"Who is Albert Einstein?\")\nprint(response1.text)\n\nresponse2 = chat.send_message(\"What were his contributions to quantum theory?\")\nprint(response2.text)\n<\/code><\/pre>\n\n\n\n<p>\ubb38\ub9e5\uc744 \uc720\uc9c0\ud558\uba70 \ub300\ud654\ud560 \uc218 \uc788\ub294 Chat \uae30\ub2a5\uc740 \ucc57\ubd07 \uc81c\uc791\uc5d0 \ub9e4\uc6b0 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">REST API \uc9c1\uc811 \ud638\ucd9c (HTTP \uc694\uccad)<\/h2>\n\n\n\n<p><strong>\uc5d4\ub4dc\ud3ec\uc778\ud2b8:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>POST https:\/\/generativelanguage.googleapis.com\/v1\/models\/gemini-pro:generateContent?key=YOUR_API_KEY<\/code><\/pre>\n\n\n\n<p><strong>cURL \uc608\uc81c:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -X POST \\\n  \"https:\/\/generativelanguage.googleapis.com\/v1\/models\/gemini-pro:generateContent?key=YOUR_API_KEY\" \\\n  -H \"Content-Type: application\/json\" \\\n  -d '{\n    \"contents\": &#91;{\n      \"parts\": &#91;{\n        \"text\": \"Explain relativity in simple terms.\"\n      }]\n    }]\n  }'\n<\/code><\/pre>\n\n\n\n<p>Postman\uc5d0\uc11c\ub3c4 \uc704\uc640 \uac19\uc740 JSON\uc73c\ub85c \uc694\uccad \uac00\ub2a5\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\ubaa8\ub378 \uc885\ub958 \uc694\uc57d<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>\ubaa8\ub378 \uc774\ub984<\/th><th>\uae30\ub2a5<\/th><\/tr><\/thead><tbody><tr><td>gemini-pro<\/td><td>\ud14d\uc2a4\ud2b8 \uc0dd\uc131 \uc804\uc6a9<\/td><\/tr><tr><td>gemini-pro-vision<\/td><td>\uc774\ubbf8\uc9c0 + \ud14d\uc2a4\ud2b8 \uc785\ub825 \uc9c0\uc6d0<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">\ub9c8\ubb34\ub9ac \ubc0f \ucc38\uace0 \uc790\ub8cc<\/h2>\n\n\n\n<p>Google Gemini API\ub294 \ud14d\uc2a4\ud2b8 \uae30\ubc18\uc758 \uc9c8\ubb38\uc751\ub2f5\ubd80\ud130 \uc774\ubbf8\uc9c0 \ubd84\uc11d, \uc5f0\uc18d \ub300\ud654 \ucc57\ubd07\uae4c\uc9c0 \ud65c\uc6a9\ub3c4\uac00 \ub9e4\uc6b0 \ub192\uc2b5\ub2c8\ub2e4. WordPress, Flask, FastAPI, Streamlit \ub4f1 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uacfc\ub3c4 \uc5f0\ub3d9\uc774 \uac00\ub2a5\ud558\ub2c8 \ud504\ub85c\uc81d\ud2b8\uc5d0 \uc801\uadf9 \ud65c\uc6a9\ud574 \ubcf4\uc138\uc694.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\ucc38\uace0 \ub9c1\ud06c<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/ai.google.dev\/docs\" target=\"_blank\" rel=\"noreferrer noopener\">Gemini API \uacf5\uc2dd \ubb38\uc11c<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/makersuite.google.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Google AI Studio (\uc2e4\uc2b5 \ud50c\ub7ab\ud3fc)<\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc124\uba85: Gemini API\ub97c \ud65c\uc6a9\ud574 Google\uc758 \ucd5c\uc2e0 AI \ubaa8\ub378\uc744 \ud14d\uc2a4\ud2b8 \ubc0f \uc774\ubbf8\uc9c0 \uae30\ubc18\uc73c\ub85c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc18c\uac1c\ud569\ub2c8\ub2e4. Python \uc608\uc81c\ubd80\ud130 REST API \ud638\ucd9c\uae4c\uc9c0 \uc0c1\uc138\ud55c \uc124\uba85\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ud0dc\uadf8: Google Gemini, Gemini API, Google AI, Generative AI, Python, Chat API, Vision AI, Bard Gemini API\ub780? Gemini API\ub294 Google\uc774 \uc81c\uacf5\ud558\ub294 \uc0dd\uc131\ud615 AI API\ub85c, GPT \uacc4\uc5f4\uacfc \uc720\uc0ac\ud558\uac8c \ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, \ucf54\ub4dc \ub4f1\uc744 \uc0dd\uc131\ud560 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[166,161,162,159,160,164,163,165],"class_list":["post-80","post","type-post","status-publish","format-standard","hentry","category-filing-information","tag-bard","tag-chat-api","tag-gemini-api","tag-generative-ai","tag-google-ai","tag-google-gemini","tag-python","tag-vision-ai"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c<\/title>\n<meta name=\"description\" content=\"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ohsland.kr\/?p=80\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c\" \/>\n<meta property=\"og:description\" content=\"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ohsland.kr\/?p=80\" \/>\n<meta property=\"og:site_name\" content=\"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100092592720482\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/profile.php?id=100092592720482\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-21T23:18:59+00:00\" \/>\n<meta name=\"author\" content=\"Oh Kwangho\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oh Kwangho\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/ohsland.kr\/?p=80#article\",\"isPartOf\":{\"@id\":\"https:\/\/ohsland.kr\/?p=80\"},\"author\":{\"name\":\"Oh Kwangho\",\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90\"},\"headline\":\"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568)\",\"datePublished\":\"2025-05-21T23:18:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/ohsland.kr\/?p=80\"},\"wordCount\":75,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90\"},\"keywords\":[\"Bard\",\"Chat API\",\"Gemini API\",\"Generative AI\",\"Google AI\",\"Google Gemini\",\"Python\",\"Vision AI\"],\"articleSection\":[\"Filing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/ohsland.kr\/?p=80#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ohsland.kr\/?p=80\",\"url\":\"https:\/\/ohsland.kr\/?p=80\",\"name\":\"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c\",\"isPartOf\":{\"@id\":\"https:\/\/ohsland.kr\/#website\"},\"datePublished\":\"2025-05-21T23:18:59+00:00\",\"description\":\"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -\",\"breadcrumb\":{\"@id\":\"https:\/\/ohsland.kr\/?p=80#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ohsland.kr\/?p=80\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ohsland.kr\/?p=80#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ohsland.kr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ohsland.kr\/#website\",\"url\":\"https:\/\/ohsland.kr\/\",\"name\":\"OhsLAND \uc9c0\uc2dd\ubcf4\uad00\uc18c\",\"description\":\"\uc811\ud574\ubcf8 \ub2e4\uc591\ud55c \uc9c0\uc2dd\uc744 \uc815\ub9ac\ud568.\",\"publisher\":{\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90\"},\"alternateName\":\"OhsLAND \uc9c0\uc2dd\ubcf4\uad00\uc18c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ohsland.kr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90\",\"name\":\"Oh Kwangho\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/ohsland.kr\/wp-content\/uploads\/2025\/05\/storeCI.png\",\"contentUrl\":\"https:\/\/ohsland.kr\/wp-content\/uploads\/2025\/05\/storeCI.png\",\"width\":610,\"height\":609,\"caption\":\"Oh Kwangho\"},\"logo\":{\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/ohsland.kr\",\"https:\/\/www.facebook.com\/profile.php?id=100092592720482\",\"https:\/\/www.instagram.com\/ohslandcom\/\",\"https:\/\/www.youtube.com\/channel\/UCspZ3lvUc7OV8mTx8txqbEw\"],\"url\":\"https:\/\/ohsland.kr\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c","description":"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ohsland.kr\/?p=80","og_locale":"en_US","og_type":"article","og_title":"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c","og_description":"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -","og_url":"https:\/\/ohsland.kr\/?p=80","og_site_name":"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100092592720482","article_author":"https:\/\/www.facebook.com\/profile.php?id=100092592720482","article_published_time":"2025-05-21T23:18:59+00:00","author":"Oh Kwangho","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oh Kwangho","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ohsland.kr\/?p=80#article","isPartOf":{"@id":"https:\/\/ohsland.kr\/?p=80"},"author":{"name":"Oh Kwangho","@id":"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90"},"headline":"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568)","datePublished":"2025-05-21T23:18:59+00:00","mainEntityOfPage":{"@id":"https:\/\/ohsland.kr\/?p=80"},"wordCount":75,"commentCount":0,"publisher":{"@id":"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90"},"keywords":["Bard","Chat API","Gemini API","Generative AI","Google AI","Google Gemini","Python","Vision AI"],"articleSection":["Filing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ohsland.kr\/?p=80#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ohsland.kr\/?p=80","url":"https:\/\/ohsland.kr\/?p=80","name":"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c","isPartOf":{"@id":"https:\/\/ohsland.kr\/#website"},"datePublished":"2025-05-21T23:18:59+00:00","description":"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -","breadcrumb":{"@id":"https:\/\/ohsland.kr\/?p=80#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ohsland.kr\/?p=80"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ohsland.kr\/?p=80#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ohsland.kr\/"},{"@type":"ListItem","position":2,"name":"Google Gemini API \uc0ac\uc6a9\ubc95 \uc644\ubcbd \uac00\uc774\ub4dc (\ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0, Chat \uc608\uc81c \ud3ec\ud568)"}]},{"@type":"WebSite","@id":"https:\/\/ohsland.kr\/#website","url":"https:\/\/ohsland.kr\/","name":"OhsLAND \uc9c0\uc2dd\ubcf4\uad00\uc18c","description":"\uc811\ud574\ubcf8 \ub2e4\uc591\ud55c \uc9c0\uc2dd\uc744 \uc815\ub9ac\ud568.","publisher":{"@id":"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90"},"alternateName":"OhsLAND \uc9c0\uc2dd\ubcf4\uad00\uc18c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ohsland.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90","name":"Oh Kwangho","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ohsland.kr\/#\/schema\/person\/image\/","url":"https:\/\/ohsland.kr\/wp-content\/uploads\/2025\/05\/storeCI.png","contentUrl":"https:\/\/ohsland.kr\/wp-content\/uploads\/2025\/05\/storeCI.png","width":610,"height":609,"caption":"Oh Kwangho"},"logo":{"@id":"https:\/\/ohsland.kr\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/ohsland.kr","https:\/\/www.facebook.com\/profile.php?id=100092592720482","https:\/\/www.instagram.com\/ohslandcom\/","https:\/\/www.youtube.com\/channel\/UCspZ3lvUc7OV8mTx8txqbEw"],"url":"https:\/\/ohsland.kr\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/posts\/80","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ohsland.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=80"}],"version-history":[{"count":1,"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/posts\/80\/revisions"}],"predecessor-version":[{"id":81,"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/posts\/80\/revisions\/81"}],"wp:attachment":[{"href":"https:\/\/ohsland.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=80"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ohsland.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=80"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ohsland.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=80"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}