top of page
事務所所在地
​福岡事務所  〒822-0885福岡市博多区相生町1-2-8
長崎事務所  〒852-8046長崎市柳谷町

代表者経歴

三菱重工業株式会社退職後

商工会議所の応援コーディネータとして勤務

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

株式会社ストラテジーエイド設立

資格等

AIプロンプトエンジニア(民間資格)

中小企業診断士
​ITコーディネータ

宅地建物取引士

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

会社経歴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.'; }); }