gpt api 연동을 하려고 하는데 gpt에 설정하는 법 알려줘
위의 프롬프트로 시작을 합니다.
프롬프트는 설명이 자세하고 요구사항이 자세할수록 더 정확한 답변을 받을 수 있습니다
항상 정답은 아니니 검토가 필요 합니다.
코드는 심플합니다.
하지만 api_key 가 없습니다
api key 는 openai api 사이트 (https://openai.com/index/openai-api/) 가입 후
결제 카드를 등록하고 프로젝트를 생성한 후 발급 하면 됩니다,
역시나 gpt에게 프롬프트를 전송하면 자세히 설명을 해줍니다.
api 버전이 변경되면서 코드가 바뀌었나 보네요
APIRemovedInV1 at /send-letter/ You tried to access openai.ChatCompletion, but this is no longer supported in openai>=1.0.0 - see the README at https://github.com/openai/openai-python for the API. You can run
openai migrate
to automatically upgrade your codebase to use the 1.0.0 interface. Alternatively, you can pin your installation to the old version, e.g.
pip install openai==0.28
A detailed migration guide is available here: https://github.com/openai/openai-python/discussions/742
이런 오류가 발생하네요
오류메세지를 프롬프트에 추가 후 해결 방법을 프롬프트로 전달을 하면
해결방법이 나옵니다.
답장을 주는 기능을 만들려면
GPT에게 system role 을 정의해주어야 합니다.
system role 역시 gpt의 프롬프트를 통해 설정할 수 있습니다.
원하는 컨셉과 기능들을 나열한 후 작성 요청을 프롬프트로 전달하면 됩니다.