2
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?

More than 1 year has passed since last update.

CodeInterpreterプラグインを用いた小説原稿のインポートと加工のハウツー

Posted at

CodeInterpreterプラグインを用いた小説原稿のインポートと加工のハウツー

1. ChatGPTとCodeInterpreterプラグインのセットアップ

  • OpenAIのウェブサイトにアクセスし、ChatGPTのインターフェースを開きます。
  • 左下にある設定(Settings)をクリックします。
  • 「Beta Features」カテゴリーの下にある「Plugins」オプションを有効にします。

2. CodeInterpreterプラグインのアクセス

  • ChatGPTインターフェースを開き、「Plugins」タブに移動します。
  • 「Code Interpreter」プラグインを見つけて選択します。

3. コードの入力と実行

  • CodeInterpreterプラグイン内の指定されたエリアにコードを入力します。
  • CodeInterpreterはあなたのコードを解析し、貴重なフィードバック、説明、デバッグのヒント、さらにはデータの視覚化を提供します。

4. 小説原稿のインポートと加工

  • まず、小説原稿をテキストファイルとして準備します。このファイルをPythonのコードを使って読み込むことができます。例えば、以下のようなコードを使用することができます。
    with open('your_novel.txt', 'r') as file:
        novel_text = file.read()
    
  • 次に、原稿のテキストを解析するためのPythonのコードを書きます。例えば、以下のようなコードを使用して、キャラクターの出現頻度を計算することができます。
    character_counts = {}
    for character in ['Alice', 'Bob', 'Charlie']:
        character_counts[character] = novel_text.count(character)
    
  • また、原稿のテキストをAIに読み込ませて新しい章を生成させることも可能です。例えば、以下のようなコードを使用して、ChatGPTに新しい章を生成させることができます。
    new_chapter_prompt = novel_text[-100:] + '\n\nChapter 2\n'
    new_chapter = chatgpt.generate(new_chapter_prompt)
    
2
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
2
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?