Tag: ChatGPT

  • Top Fast-Growing Apps in 2023

    Top Fast-Growing Apps in 2023

    This post was inspired by the recent OKTA Business at Work report and the follow-up Medium blogs by Leon Zucchini published in Apr 7 and Apr 24. Table of Contents Popular App Categories 10 Fastest-Growing Apps 10 Hottest New Apps Summary The following trends are set to shake-up the (Mobile) App industry: A few of…

  • An Interactive GPT Index and DeepLake Interface – 1. Amazon Financial Statements

    An Interactive GPT Index and DeepLake Interface – 1. Amazon Financial Statements

    Let’s set the working directory YOURPATH import osos.chdir(‘YOURPATH’) os. getcwd() and install the key libraries !pip install llama-index !pip install deeplake Let’s import the libraries from llama_index import (SimpleDirectoryReader,GPTDeepLakeIndex,GPTSimpleKeywordTableIndex,Document,LLMPredictor,ServiceContext,download_loader,)from langchain.chat_models import ChatOpenAIfrom typing import List, Optional, Tupleimport requestsimport tqdmimport osfrom pathlib import Path Let’s define the PDF file reader PDFReader = download_loader(“PDFReader”) loader = PDFReader()…