我想从R使用以下curl命令访问OpenAI API:
curl https://api.openai.com/v1/engines/davinci/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"prompt": "This is a test", "max_tokens": 5}'
我认为curl包(在cram上)将是最好的选择(?)。我从来没有用过这个包,所以有没有人能帮我开始这个简单的调用?
1条答案
按热度按时间ghhaqwfi1#
使用
httr
包(在CRAN上)可以轻松完成,向@r2evans提供建议: