llama-index packs amazon_product_extraction integration
Project description
Amazon Product Extraction Pack
This LlamaPack provides an example of our Amazon product extraction pack.
It loads in a website URL, screenshots the page. Then we use OpenAI GPT-4V + prompt engineering to extract the screenshot into a structured JSON output.
Check out the notebook here.
CLI Usage
You can download llamapacks directly using llamaindex-cli, which comes installed with the llama-index python package:
llamaindex-cli download-llamapack AmazonProductExtractionPack --download-dir ./amazon_product_extraction_pack
You can then inspect the files at ./amazon_product_extraction_pack and use them as a template for your own project.
Code Usage
You can download the pack to a the ./amazon_product_extraction_pack directory:
from llama_index.core.llama_pack import download_llama_pack
# download and install dependencies
AmazonProductExtractionPack = download_llama_pack(
"AmazonProductExtractionPack", "./amazon_product_extraction_pack"
)
From here, you can use the pack, or inspect and modify the pack in ./amazon_product_extraction_pack.
Then, you can set up the pack like so:
# create the pack
# get documents from any data loader
amazon_product_extraction_pack = SentenceWindowRetrieverPack(
amazon_product_page,
)
The run() function is a light wrapper around program().
response = amazon_product_extraction_pack.run()
display(response.dict())
You can also use modules individually.
# get pydantic program
program = amazon_product_extraction_pack.openai_program
# get multi-modal LLM
mm_llm = amazon_product_extraction_pack.openai_mm_llm
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llama_index_packs_amazon_product_extraction-0.4.1.tar.gz.
File metadata
- Download URL: llama_index_packs_amazon_product_extraction-0.4.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50075deb4f102a86ba8f3a5455c6b5d28015b2dcd36511d266ea2e9e4bd17bfd
|
|
| MD5 |
fff2709dd7bcd72085c323bca5e678f9
|
|
| BLAKE2b-256 |
7271627dd217c56656f569840c7a59fbab8922bc539cd74bf900b6cd36b2e077
|
File details
Details for the file llama_index_packs_amazon_product_extraction-0.4.1-py3-none-any.whl.
File metadata
- Download URL: llama_index_packs_amazon_product_extraction-0.4.1-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b7e32f8462ccaa7ed6128d27bc58070a2154374a09f0756503aed67115e2f40
|
|
| MD5 |
fd8cc81613b1c1275b2bdca1f9e0c1c6
|
|
| BLAKE2b-256 |
d3b70383fc29333e4459c5595ad99f95f61d03382ecace53bca7999dd01eb14a
|