Slide 29
Slide 29 text
29
これからについて
サンプルコード
llamaindex 公式Github README.md
import os
from llama_index import GPTSimpleVectorIndex, SimpleDirectoryReader
os.environ["OPENAI_API_KEY"] = 'YOUR_OPENAI_API_KEY'
documents = SimpleDirectoryReader('data').load_data()
index = GPTSimpleVectorIndex.from_documents(documents)
index.query("契約形態を教えて")