Skip to content

Releases: run-llama/llama_index

GPT Index v0.4.0

08 Feb 08:38
aa0092a
Compare
Choose a tag to compare

GPT Index 0.4.0 is out! We bumped the middle version up because we’ve now added

📄🪵 Full support for Python logger 🪵📄

Throughout the entire codebase. No more print statements!

HUGE shoutout to @mcminis1 for landing this awesome change!

NOTE  ⚠️: this is a breaking change. There are no more verbose parameters anymore.

See the following example for how to configure basic logging to stdout (similar to print statement).

Load documents, build the GPTSimpleVectorindex

GPT Index v0.3.6

07 Feb 00:04
Compare
Choose a tag to compare

GPT Index 0.3.6 is out:

  • Added parser/reader for .mbox files - feed emails 📧 into GPT Index! (Thanks Markus)
  • Hot fixed Qdrant index querying (thanks @lukawskikacper)
  • Refactored openai embeddings enum (thanks Kevin)

We have a very exciting new release coming up tomorrow, stay tuned :)

GPT Index v0.3.5

05 Feb 01:30
Compare
Choose a tag to compare

GPT Index 0.3.5 is out.

  • You don’t need to specify query_configs for a recursive query anymore. We’ll use default configs instead.
  • 📁 Added save/load from string for indices/graphs - allows you to save/load from other sources besides disk!
  • Fixed google reader import error (thanks ahmetkca)

GPT Index v0.3.4

03 Feb 07:46
Compare
Choose a tag to compare
  • You can now “retrieve” 🔖 any index within a composed graph! See below 👇for an example walkthrough of how this works.
  • Added headers to our markdown parser

GPT Index v0.3.3

02 Feb 09:17
Compare
Choose a tag to compare

GPT Index 0.3.3 is out:

  • Added an epub parser! (Thanks Jimmy)
  • Swapped out the CSV parser for a pandas-based parser (thanks Johanna).
  • Fixed token too big bug

GPT Index v0.3.2

01 Feb 08:39
Compare
Choose a tag to compare

GPT Index 0.3.2 is out:

  • Big update: Added qdrant index and reader! Thanks @kacperlukawski for implementing everything from scratch. Now you can use qdrant both as a data source and as a store for your index.
  • Fixed Faiss bug, Document metadata bug

GPT Index v0.3.1

31 Jan 07:09
d38310d
Compare
Choose a tag to compare

GPT Index v0.3.1 is out:

  • Created ObsidianReader - this allows you to easily parse your directory of markdown files, in an Obsidian vault or elsewhere! Will remove hyperlinks/images automatically. (thanks Hursh)

GPT Index v0.3.0

30 Jan 06:16
Compare
Choose a tag to compare

GPT Index 0.3.0 is out:

GPT Index v0.2.17

29 Jan 01:58
Compare
Choose a tag to compare

GPT Index v0.2.17:

  • Allow passing in a specific list of file_paths in SimpleDirectoryReader. Gives you more control over files than passing in an entire directory
  • Upgrade Notion reader to read child pages as well