■ OpenAI 클래스의 completions 변수를 사용해 번역하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
import json import os from openai import OpenAI os.environ["OPENAI_API_KEY"] = "<OPENAI_API_KEY>" openAI = OpenAI() # openAI.completions : openai.resources.completions.Completions 클래스 # completion : openai.types.completion.Completion 클래스 completion = openAI.completions.create( model = "gpt-3.5-turbo-instruct", prompt = "한국어를 영어로 번역합니다.\n\n한국어 : 나는 고양이다.\n영어는 어떻게 됩니까?한국어를 영어로 번역합니다.\n\n한국어 : 나는 고양이다.\n영어는 어떻게 됩니까?", temperature = 0, max_tokens = 256, top_p = 1, frequency_penalty = 0, presence_penalty = 0 ) print(completion) """ Completion ( id = 'cmpl-9W7qx64Ngh2dnoM9gBGbHgIFvwaMo', choices = [ CompletionChoice ( finish_reason = 'stop', index = 0, logprobs = None, text = '\n\n영어: I am a cat.' ) ], created = 1717443711, model = 'gpt-3.5-turbo-instruct', object = 'text_completion', system_fingerprint = None, usage = CompletionUsage ( completion_tokens = 10, prompt_tokens = 88, total_tokens = 98 ) ) """ |
▶ requirements.txt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
annotated-types==0.7.0 anyio==4.4.0 certifi==2024.6.2 distro==1.9.0 exceptiongroup==1.2.1 h11==0.14.0 httpcore==1.0.5 httpx==0.27.0 idna==3.7 openai==1.30.5 pydantic==2.7.3 pydantic_core==2.18.4 sniffio==1.3.1 tqdm==4.66.4 typing_extensions==4.12.1 |