実現したいこと
下記URLのようにWebページをスクレイビングしたうえで、AIを利用したいです。
https://dev.classmethod.jp/articles/llama-index-developersio-articles/
前提
上記URLを参考にして、Index作成コードの個所のコードを実行しようとしましたが、エラーとなりました。
発生している問題・エラーメッセージ
openai.error.AuthenticationError: No API key provided. You can set your API key in code using 'openai.api_key = <API-KEY>', or you can set the environment variable OPENAI_API_KEY=<API-KEY>). If your API key is stored in a file, you can point the openai module at it with 'openai.api_key_path = <PATH>'. You can generate API keys in the OpenAI web interface. See https://onboard.openai.com for details, or email support@openai.com if you have any questions.
該当のソースコード
Python
1# create-index.py 2import csv 3from llama_index import GPTSimpleVectorIndex, SimpleWebPageReader 4from llama_index.langchain_helpers.chatgpt import ChatGPTLLMPredictor 5import os 6os.environ["OPENAI_API_KEY"] = 'sk-XXXXXXXXX' 7 8article_urls = [] 9with open('tmp/genshinwiki.csv') as f: 10 reader = csv.reader(f) 11 for row in reader: 12 article_urls.append(row[0]) 13 14documents = SimpleWebPageReader().load_data(article_urls) 15index = GPTSimpleVectorIndex(documents=documents, llm_predictor=ChatGPTLLMPredictor() 16) 17index.save_to_disk('tmp/index.json')
試したこと
元々のソースコードには、5,6行目のコードは無かったのですが、エラーメッセージよりAPI KEYを定義できてないのだと理解し、個人的にはこれで定義できたのかなと思いましたが、エラーは出続ける結果となってしまいました。
他のネットの情報も探してみたかったのですが、GoogleColaboであったりMacだったりと当方Windows環境であり、参考になりそうな情報が無くどうすればいいかわからない状況です。
※ソースコードは修正していますが、手元のコードにはsk-XXXXXのコードは実際にOpenAIのサイトより発行したAPI KEYを入力してあります。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。