Metadata-Version: 2.4
Name: llama-index-indices-managed-bge-m3
Version: 0.6.0
Summary: llama-index managed indices bge-m3 integration
Author-email: Panuthep Tasawong <panuthep.t_s20@vistec.ac.th>
License-Expression: MIT
License-File: LICENSE
Requires-Python: <4.0,>=3.9
Requires-Dist: flagembedding>=1.2.11
Requires-Dist: llama-index-core<0.14,>=0.13.0
Requires-Dist: peft>=0.12.0
Description-Content-Type: text/markdown

# LlamaIndex Indices Integration: Bge-M3

## Setup

```
pip install -U llama-index-indices-managed-bge-m3
```

## Usage

```python
from llama_index.indices.managed.bge_m3 import BGEM3Index

index = BGEM3Index.from_documents(
    documents, weights_for_different_modes=[0.4, 0.2, 0.4]
)
retriever = index.as_retriever()
```
