Back to Llama Index

Google Docs Reader

docs/examples/data_connectors/GoogleDocsDemo.ipynb

0.14.211.2 KB
Original Source

<a href="https://colab.research.google.com/github/run-llama/llama_index/blob/main/docs/examples/data_connectors/GoogleDocsDemo.ipynb" target="_parent"></a>

Google Docs Reader

Demonstrates our Google Docs data connector

If you're opening this Notebook on colab, you will probably need to install LlamaIndex 🦙.

python
%pip install llama-index-readers-google
python
!pip install llama-index
python
import logging
import sys

logging.basicConfig(stream=sys.stdout, level=logging.INFO)
logging.getLogger().addHandler(logging.StreamHandler(stream=sys.stdout))
python
from llama_index.core import SummaryIndex
from llama_index.readers.google import GoogleDocsReader
from IPython.display import Markdown, display
import os
python
# make sure credentials.json file exists
document_ids = ["<document_id>"]
documents = GoogleDocsReader().load_data(document_ids=document_ids)
python
index = SummaryIndex.from_documents(documents)
python
# set Logging to DEBUG for more detailed outputs
query_engine = index.as_query_engine()
response = query_engine.query("<query_text>")
python
display(Markdown(f"<b>{response}</b>"))