■ 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 |
import os from openai import OpenAI os.environ["OPENAI_API_KEY"] = "<OPENAI_API_KEY>" openAI = OpenAI() prompt = "아래 문구의 오타를 수정해 주세요.\n\n오늘은 정말 즐거웠따." completon = openAI.completions.create( model ="gpt-3.5-turbo-instruct", prompt = prompt, temperature = 0 ) print(completon) """ Completion(id='cmpl-9WevcYsVcfMV5yxQdGWmbGSJjN7kK', choices=[CompletionChoice(finish_reason='length', index=0, logprobs=None, text='\n\n오늘은 정말 즐거웠다.')], created=1717570852, model='gpt-3.5-turbo-instruct', object='text_completion', system_fingerprint=None, usage=CompletionUsage(completion_tokens=16, prompt_tokens=31, total_tokens=47)) """ |
▶ 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.31.0 pydantic==2.7.3 pydantic_core==2.18.4 sniffio==1.3.1 tqdm==4.66.4 typing_extensions==4.12.1 |