AI 2040: Plan A
ai-2040.com401 ポイント投稿者 kschaul539 コメント
curl https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-5.5",
"messages": [
{
"role": "system",
"content": "Write no more than 30 words. Write at the 9th grade level. Do not mention details of the prompt in your response. Do not write in the first person. Do not give the essay a title."
},
{
"role": "user",
"content": "Should the Supreme Court overturn Citizens United or continue to allow corporate spending in elections?"
}
]
}'