llama-index-packs-self-discover


Namellama-index-packs-self-discover JSON
Version 0.3.0 PyPI version JSON
download
home_pageNone
Summaryllama-index packs self_discover paper implementation
upload_time2024-11-17 22:43:02
maintainerNone
docs_urlNone
authorRavi Theja
requires_python<4.0,>=3.9
licenseMIT
keywords discover self self-discover task
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Self-Discover LlamaPack

This LlamaPack implements [Self-Discover: Large Language Models Self-Compose Reasoning Structures](https://arxiv.org/abs/2402.03620) paper.

It has two stages for the given task:

1. STAGE-1:

   a. SELECT: Selects subset of reasoning Modules.

   b. ADAPT: Adapts selected reasoning modules to the task.

   c. IMPLEMENT: It gives reasoning structure for the task.

2. STAGE-2: Uses the generated reasoning structure for the task to generate an answer.

The implementation is inspired from the [codebase](https://github.com/catid/self-discover)

## CLI Usage

You can download llamapacks directly using `llamaindex-cli`, which comes installed with the `llama-index` python package:

```bash
llamaindex-cli download-llamapack SelfDiscoverPack --download-dir ./self_discover_pack
```

You can then inspect the files at `./self_discover_pack` and use them as a template for your own project!

## Code Usage

There are two ways using LlamaPack:

1. Do `download_llama_pack` to load the Self-Discover LlamaPack.
2. Directly use `SelfDiscoverPack`

### Using `download_llama_pack`

```python
from llama_index.core.llama_pack import download_llama_pack

# download and install dependencies
SelfDiscoverPack = download_llama_pack(
    "SelfDiscoverPack", "./self_discover_pack"
)

self_discover_pack = SelfDiscoverPack(verbose=True, llm=llm)
```

### Directly use `SelfRAGPack`

```python
from llama_index.packs.self_discover import SelfDiscoverPack

self_discover_pack = SelfRAGPack(llm=llm, verbose=True)
```

The run() function serves as a concise wrapper that implements the logic outlined in the "self-discover" paper, applying it to a sample task as illustrated below.

`Emma needs to prepare 50 invitations for her upcoming birthday party. She can handwrite 10 invitations in an hour. After working for 2 hours, she takes a break for 30 minutes. If she resumes writing at the same pace, how long will it take her to complete all 50 invitations?`

```python
output = pack.run("<task>")
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "llama-index-packs-self-discover",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.9",
    "maintainer_email": null,
    "keywords": "discover, self, self-discover, task",
    "author": "Ravi Theja",
    "author_email": "ravi03071991@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a8/15/01566229c247a3692593229509d5719a0cc760a0f9ebe339c0bfbfe46413/llama_index_packs_self_discover-0.3.0.tar.gz",
    "platform": null,
    "description": "# Self-Discover LlamaPack\n\nThis LlamaPack implements [Self-Discover: Large Language Models Self-Compose Reasoning Structures](https://arxiv.org/abs/2402.03620) paper.\n\nIt has two stages for the given task:\n\n1. STAGE-1:\n\n   a. SELECT: Selects subset of reasoning Modules.\n\n   b. ADAPT: Adapts selected reasoning modules to the task.\n\n   c. IMPLEMENT: It gives reasoning structure for the task.\n\n2. STAGE-2: Uses the generated reasoning structure for the task to generate an answer.\n\nThe implementation is inspired from the [codebase](https://github.com/catid/self-discover)\n\n## CLI Usage\n\nYou can download llamapacks directly using `llamaindex-cli`, which comes installed with the `llama-index` python package:\n\n```bash\nllamaindex-cli download-llamapack SelfDiscoverPack --download-dir ./self_discover_pack\n```\n\nYou can then inspect the files at `./self_discover_pack` and use them as a template for your own project!\n\n## Code Usage\n\nThere are two ways using LlamaPack:\n\n1. Do `download_llama_pack` to load the Self-Discover LlamaPack.\n2. Directly use `SelfDiscoverPack`\n\n### Using `download_llama_pack`\n\n```python\nfrom llama_index.core.llama_pack import download_llama_pack\n\n# download and install dependencies\nSelfDiscoverPack = download_llama_pack(\n    \"SelfDiscoverPack\", \"./self_discover_pack\"\n)\n\nself_discover_pack = SelfDiscoverPack(verbose=True, llm=llm)\n```\n\n### Directly use `SelfRAGPack`\n\n```python\nfrom llama_index.packs.self_discover import SelfDiscoverPack\n\nself_discover_pack = SelfRAGPack(llm=llm, verbose=True)\n```\n\nThe run() function serves as a concise wrapper that implements the logic outlined in the \"self-discover\" paper, applying it to a sample task as illustrated below.\n\n`Emma needs to prepare 50 invitations for her upcoming birthday party. She can handwrite 10 invitations in an hour. After working for 2 hours, she takes a break for 30 minutes. If she resumes writing at the same pace, how long will it take her to complete all 50 invitations?`\n\n```python\noutput = pack.run(\"<task>\")\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "llama-index packs self_discover paper implementation",
    "version": "0.3.0",
    "project_urls": null,
    "split_keywords": [
        "discover",
        " self",
        " self-discover",
        " task"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88742c60cb0433884297ac56694d994d07267831b3820bedf3ad5d9b71686380",
                "md5": "ba14de5fdb2ac9923d3f2e6ad41ae4c9",
                "sha256": "9c4d09872abebb70bb17c48d968579f77f4b5588b992337c0931036cfc04829f"
            },
            "downloads": -1,
            "filename": "llama_index_packs_self_discover-0.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ba14de5fdb2ac9923d3f2e6ad41ae4c9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 5854,
            "upload_time": "2024-11-17T22:43:01",
            "upload_time_iso_8601": "2024-11-17T22:43:01.313074Z",
            "url": "https://files.pythonhosted.org/packages/88/74/2c60cb0433884297ac56694d994d07267831b3820bedf3ad5d9b71686380/llama_index_packs_self_discover-0.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a81501566229c247a3692593229509d5719a0cc760a0f9ebe339c0bfbfe46413",
                "md5": "b923e0a1f86a76b6f07cca6875d1ad15",
                "sha256": "6fa77821f73888fc0732f2330980ad93c70b221ce85309b8778ea3abf2889f03"
            },
            "downloads": -1,
            "filename": "llama_index_packs_self_discover-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b923e0a1f86a76b6f07cca6875d1ad15",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 5592,
            "upload_time": "2024-11-17T22:43:02",
            "upload_time_iso_8601": "2024-11-17T22:43:02.158146Z",
            "url": "https://files.pythonhosted.org/packages/a8/15/01566229c247a3692593229509d5719a0cc760a0f9ebe339c0bfbfe46413/llama_index_packs_self_discover-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-17 22:43:02",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-index-packs-self-discover"
}
        
Elapsed time: 1.33526s