0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ChatGPT開発入門

Last updated at Posted at 2024-09-21

GPTのAPI基礎知識

料金

  • トークンに対してお金がかかってくる。
    • トークンは日本語よりも英語の方がカウント数が少なくなるので開発の時には英語を使った方がいい。

プロンプトエンジニアリング

参考記事

プロンプトエンジニアリングガイド

プロンプトの手法

  • Few-Shotプロンプティング
    質問の時にいくつか例を提供してあげると精度が上がる

  • Chain-of-Thoughtプロンプティング
    ステップバイステップで回答をしてもらう方法

LangChain

使われている言語

Python,TypeScri pt

ユースケース

  • 文書の要約
  • チャットボット
  • ドキュメントへのQA

Models

機械学習のモデルのこと

  • LLMs:CompletionsAPI
  • Chat Models:Chat API
  • Text Embedding Models

Chains

  • 例えば、Promptを使った後にModelを使いたいなどがある場合にその流れをつなぐときに使う。
  • SimpleSequentialChainを使うとChainとChainを連結することができる。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?