Skip to content

Commit

Permalink
v0.10.30 (#12903)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Apr 17, 2024
1 parent 73d2e82 commit 89a8a4f
Show file tree
Hide file tree
Showing 14 changed files with 556 additions and 334 deletions.
61 changes: 61 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,66 @@
# ChangeLog

## [2024-04-17]

### `llama-index-core` [0.10.30]

- Add intermediate outputs to QueryPipeline (#12683)
- Fix show progress causing results to be out of order (#12897)
- add OR filter condition support to simple vector store (#12823)
- improved custom agent init (#12824)
- fix pipeline load without docstore (#12808)
- Use async `_aprocess_actions` in `_arun_step_stream` (#12846)
- provide the exception to the StreamChatErrorEvent (#12879)
- fix bug in load and search tool spec (#12902)

### `llama-index-embeddings-azure-opena` [0.1.7]

- Expose azure_ad_token_provider argument to support token expiration (#12818)

### `llama-index-embeddings-cohere` [0.1.8]

- Add httpx_async_client option (#12896)

### `llama-index-embeddings-ipex-llm` [0.1.0]

- add ipex-llm embedding integration (#12740)

### `llama-index-embeddings-octoai` [0.1.0]

- add octoai embeddings (#12857)

### `llama-index-llms-azure-openai` [0.1.6]

- Expose azure_ad_token_provider argument to support token expiration (#12818)

### `llama-index-llms-ipex-llm` [0.1.2]

- add support for loading "low-bit format" model to IpexLLM integration (#12785)

### `llama-index-llms-mistralai` [0.1.11]

- support `open-mixtral-8x22b` (#12894)

### `llama-index-packs-agents-lats` [0.1.0]

- added LATS agent pack (#12735)

### `llama-index-readers-smart-pdf-loader` [0.1.4]

- Use passed in metadata for documents (#12844)

### `llama-index-readers-web` [0.1.9]

- added Firecrawl Web Loader (#12825)

### `llama-index-vector-stores-milvus` [0.1.10]

- use batch insertions into Milvus vector store (#12837)

### `llama-index-vector-stores-vearch` [0.1.0]

- add vearch to vector stores (#10972)

## [2024-04-13]

### `llama-index-core` [0.10.29]
Expand Down
61 changes: 61 additions & 0 deletions docs/docs/CHANGELOG.md
@@ -1,5 +1,66 @@
# ChangeLog

## [2024-04-17]

### `llama-index-core` [0.10.30]

- Add intermediate outputs to QueryPipeline (#12683)
- Fix show progress causing results to be out of order (#12897)
- add OR filter condition support to simple vector store (#12823)
- improved custom agent init (#12824)
- fix pipeline load without docstore (#12808)
- Use async `_aprocess_actions` in `_arun_step_stream` (#12846)
- provide the exception to the StreamChatErrorEvent (#12879)
- fix bug in load and search tool spec (#12902)

### `llama-index-embeddings-azure-opena` [0.1.7]

- Expose azure_ad_token_provider argument to support token expiration (#12818)

### `llama-index-embeddings-cohere` [0.1.8]

- Add httpx_async_client option (#12896)

### `llama-index-embeddings-ipex-llm` [0.1.0]

- add ipex-llm embedding integration (#12740)

### `llama-index-embeddings-octoai` [0.1.0]

- add octoai embeddings (#12857)

### `llama-index-llms-azure-openai` [0.1.6]

- Expose azure_ad_token_provider argument to support token expiration (#12818)

### `llama-index-llms-ipex-llm` [0.1.2]

- add support for loading "low-bit format" model to IpexLLM integration (#12785)

### `llama-index-llms-mistralai` [0.1.11]

- support `open-mixtral-8x22b` (#12894)

### `llama-index-packs-agents-lats` [0.1.0]

- added LATS agent pack (#12735)

### `llama-index-readers-smart-pdf-loader` [0.1.4]

- Use passed in metadata for documents (#12844)

### `llama-index-readers-web` [0.1.9]

- added Firecrawl Web Loader (#12825)

### `llama-index-vector-stores-milvus` [0.1.10]

- use batch insertions into Milvus vector store (#12837)

### `llama-index-vector-stores-vearch` [0.1.0]

- add vearch to vector stores (#10972)

## [2024-04-13]

### `llama-index-core` [0.10.29]
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/embeddings/octoai.md
@@ -0,0 +1,4 @@
::: llama_index.embeddings.octoai
options:
members:
- OctoAIEmbeddings
4 changes: 4 additions & 0 deletions docs/docs/api_reference/packs/agents_lats.md
@@ -0,0 +1,4 @@
::: llama_index.packs.agents_lats
options:
members:
- LATSPack
2 changes: 1 addition & 1 deletion docs/docs/api_reference/retrievers/bedrock.md
@@ -1,4 +1,4 @@
::: llama_index.retrievers.bedrock
options:
members:
- BedrockRetriever
- AmazonKnowledgeBasesRetriever
4 changes: 4 additions & 0 deletions docs/docs/api_reference/storage/vector_store/vearch.md
@@ -0,0 +1,4 @@
::: llama_index.vector_stores.vearch
options:
members:
- VearchVectorStore
9 changes: 9 additions & 0 deletions docs/mkdocs.yml
Expand Up @@ -82,6 +82,7 @@ nav:
- ./examples/agent/return_direct_agent.ipynb
- ./examples/agent/anthropic_agent.ipynb
- ./examples/agent/coa_agent.ipynb
- ./examples/agent/lats_agent.ipynb
- Callbacks:
- ./examples/callbacks/HoneyHiveLlamaIndexTracer.ipynb
- ./examples/callbacks/PromptLayerHandler.ipynb
Expand Down Expand Up @@ -189,6 +190,7 @@ nav:
- ./examples/embeddings/cloudflare_workersai.ipynb
- ./examples/embeddings/openvino.ipynb
- ./examples/embeddings/ipex_llm.ipynb
- ./examples/embeddings/octoai.ipynb
- Evaluation:
- ./examples/evaluation/TonicValidateEvaluators.ipynb
- ./examples/evaluation/semantic_similarity_eval.ipynb
Expand Down Expand Up @@ -531,6 +533,7 @@ nav:
- ./examples/vector_stores/TiDBVector.ipynb
- ./examples/vector_stores/AmazonNeptuneVectorDemo.ipynb
- ./examples/vector_stores/CouchbaseVectorStoreDemo.ipynb
- ./examples/vector_stores/VearchDemo.ipynb
- Component Guides:
- ./module_guides/index.md
- Models:
Expand Down Expand Up @@ -705,6 +708,7 @@ nav:
- ./api_reference/embeddings/llm_rails.md
- ./api_reference/embeddings/mistralai.md
- ./api_reference/embeddings/nomic.md
- ./api_reference/embeddings/octoai.md
- ./api_reference/embeddings/ollama.md
- ./api_reference/embeddings/openai.md
- ./api_reference/embeddings/openvino.md
Expand Down Expand Up @@ -812,6 +816,7 @@ nav:
- Llama Packs:
- ./api_reference/packs/agent_search_retriever.md
- ./api_reference/packs/agents_coa.md
- ./api_reference/packs/agents_lats.md
- ./api_reference/packs/agents_llm_compiler.md
- ./api_reference/packs/amazon_product_extraction.md
- ./api_reference/packs/arize_phoenix_query_engine.md
Expand Down Expand Up @@ -1263,6 +1268,7 @@ nav:
- ./api_reference/storage/vector_store/txtai.md
- ./api_reference/storage/vector_store/typesense.md
- ./api_reference/storage/vector_store/upstash.md
- ./api_reference/storage/vector_store/vearch.md
- ./api_reference/storage/vector_store/weaviate.md
- ./api_reference/storage/vector_store/zep.md
- Tools:
Expand Down Expand Up @@ -1809,6 +1815,9 @@ plugins:
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-couchbase
- ../llama-index-integrations/retrievers/llama-index-retrievers-bedrock
- ../llama-index-integrations/retrievers/llama-index-retrievers-mongodb-atlas-bm25-retriever
- ../llama-index-packs/llama-index-packs-agents-lats
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-vearch
- ../llama-index-integrations/embeddings/llama-index-embeddings-octoai
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md
Expand Down

0 comments on commit 89a8a4f

Please sign in to comment.