Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

2023-12-08から1日間の記事一覧

GPT-4をPythonで使う(再戦)

実際のところ from openai import OpenAI yourclient = OpenAI( api_key="sk-..." ) def makeQuestions(client, prompt): chat_completion = client.chat.completions.create( messages=[ {"role": "system", "content": "You are a helpful assistant."}, {…