top of page

​代表者経歴

早稲田大学理工学部卒業

三菱重工業株式会社入社 長崎造船所配属

三菱重工業定年退職後三菱重工業関連会社転籍

関連会社退職後各種勤務先を経て商工会議所応援コーディネータとして勤務

​中小企業診断士事務所(ストラテジーシステム研究所)開設

​その後株式会社ストラテジーエイド設立

資格等

中小企業診断士 

​ITコーディネータ

宅地建物取引士

​経済産業省認定経営革新等認定支援機関

福岡市中小企業支援センター相談員

​月次支援金登録確認機関

  • Facebook
  • Twitter
  • LinkedIn
  • Instagram
アンカー 1
bottom of page
import { fetch } from 'wix-fetch'; // OpenAI APIのエンドポイントとAPIキーを設定します const API_KEY = 'YOUR_API_KEY'; // OpenAIから取得したAPIキーを入力してください const API_URL = 'https://api.openai.com/v1/engines/davinci/completions'; // GPT-3 APIリクエストを処理する関数 export function getGPTResponse(prompt) { return fetch(API_URL, { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': `Bearer ${API_KEY}` }, body: JSON.stringify({ prompt: prompt, max_tokens: 100 // 必要に応じてトークンの数を調整します }) }) .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }) .then(data => data.choices[0].text) .catch(error => { console.error('There was a problem with the fetch operation:', error); return 'Error occurred while fetching response.'; }); }