1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 00:22:08 +02:00
tldr/pages.ko/common/openai.md
Lena d74e776a9c
pages.*/*: replace {{" "}} with "{{ }}" (#15034)
The latter notation is preferred by the style guide.
2024-12-05 22:57:27 +05:30

20 lines
519 B
Markdown

# openai
> OpenAI API에 접근할 수 있는 CLI 도구.
> 더 많은 정보: <https://github.com/openai/openai-python>.
- 모델 나열:
`openai api models.list`
- 완료 생성:
`openai api completions.create --model {{ada}} --prompt "{{Hello world}}"`
- 채팅 완료 생성:
`openai api chat_completions.create --model {{gpt-3.5-turbo}} --message {{user "Hello world"}}`
- DALL·E API를 통해 이미지 생성:
`openai api image.create --prompt "{{two dogs playing chess, cartoon}}" --num-images {{1}}`