Notice
Recent Posts
Recent Comments
목록GPT (1)
Dharma
[Emacs Lisp] GPT 에게 문의 하는 기능
gtpai 를 이용하니 Multibyte 처리가 안되어 있는 함수를 이용하기 때문에 제대로 동작하지 않는다. 그거와 최대한 유사하게 가장 간단한 기능만을 옮겨봤다. (defvar gpt-base-url "https://api.openai.com/v1/completions") (defvar gpt-chat-url "https://api.openai.com/v1/chat/completions") (defcustom gpt-model "" "API Model for OpenAI." :type 'string :group 'crutil) (defcustom gpt-api-key "" "API key for OpenAI." :type 'string :group 'crutil) (defun send-query-to-..
프로그래밍
2023. 4. 3. 15:28