https://platform.openai.com/playground
웹 UI가 아닌 playground에서는 다양한 변수를 조작하여 ChatGpt 를 사용해 볼 수 있다.
우측 상단에 View Code가 있음, 해당 코드를 복사하여 colab에서 ChatGpt API를 호출해볼 수 있다.
colab
!pip install openai
https://python.langchain.com/docs/tutorials/
https://platform.openai.com/docs/guides/text-generation
open AI라는 커뮤니케이션 가능한 핸드폰이 있다.
이 핸드폰은 text generation, function calling, embeddings, find-tuning, image generation, vision, text-to-speech, moderation 등의 기능을 가지고 있다.
chat API (chat.completions) 를 이용해서 prompt 를 보내고 response를 받았다.
image gen API (images.generate) 를 이용하여 prompt + image를 보내고 response를 받는다
사용해야할 기능에 따라 모델이 다르다
imsage에서는 dali, gpt-vision , 음성에서는 whisper 등등
open ai 에서 제공하기 떄문에 다른 모델을 사용할 수는 없다.
openapi 외에 langchain에서 나온 모델을 사용해서 개발할 수도 있다.
fucntion-calling, moderation, embedding, fine-tuing 중요
----
인터넷 검색, openai 외의 다른 모델들 pdf 읽기, youtube의 자막 등
이런 모듈을 만들어서 패키지로 만든게 Langchain 이 됨
internet을 검색한 결과를 가지고 prompt 를 만들어서 openai 호출 등,,
'기타내용' 카테고리의 다른 글
패스트캠퍼스 ChatGPT와 함께 월 100만원 수익 블로그 만들기 (2) (0) | 2025.01.30 |
---|---|
OpenAI Platform - API, Playground 사용하기 (0) | 2025.01.30 |
패스트캠퍼스 AI 개발자의 LLM 마스터 클래스(1) (0) | 2025.01.27 |
패스트캠퍼스 ChatGPT와 함께 월 100만원 수익 블로그 만들기 (1) (0) | 2025.01.27 |
Database Sharding vs. Partitioning (0) | 2024.08.02 |