llama-index node_parser dashscope integration
Project description
LlamaIndex Node_Parser-Relational Integration: Dashscope
Transform your documents into nodes with ease using the Dashscope integration for LlamaIndex. This tool allows for precise control over chunk size, overlap size, and more, tailored for the Dashscope reader output format.
Installation
pip install llama-index-node-parser-dashscope
Quick Start
Get up and running with just a few lines of code:
import json
import os
from llama_index.node_parser.relational.dashscope import (
DashScopeJsonNodeParser,
)
from llama_index.core.ingestion import IngestionPipeline
from llama_index.core.schema import Document
# Set your Dashscope API key in the environment
os.environ["DASHSCOPE_API_KEY"] = "your_api_key_here"
documents = [
# Prepare your documents obtained from the Dashscope reader
]
# Initialize the DashScope JsonNodeParser
node_parser = DashScopeJsonNodeParser(
chunk_size=100, overlap_size=0, separator=" |,|,|。|?|!|\n|\?|\!"
)
# Set up the ingestion pipeline with the node parser
pipeline = IngestionPipeline(transformations=[node_parser])
# Process the documents and print the resulting nodes
nodes = pipeline.run(documents=documents, show_progress=True)
for node in nodes:
print(node)
Configuration
- API Key: You need a Dashscope API key to begin. Set it in your environment as shown in the Quick Start section.
- Document Preparation: Your documents must be in the Dashscope reader output format.
Project details
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_node_parser_dashscope-0.6.0.tar.gz.
File metadata
- Download URL: llama_index_node_parser_dashscope-0.6.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79a58aa0303286e936c62af16f56ae21ecde3be5b551dab91cff23051dcd2cd4
|
|
| MD5 |
5acccb8611a9c8c59038fa5631e149c5
|
|
| BLAKE2b-256 |
0b0dbd631afe7d33c683fd663bf203226b4662d4463fd026e4a2c6787c34b9e2
|
File details
Details for the file llama_index_node_parser_dashscope-0.6.0-py3-none-any.whl.
File metadata
- Download URL: llama_index_node_parser_dashscope-0.6.0-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e838b1e74204fe449817f3592525b4f3f11404e915c63a02d6fb995683e370e
|
|
| MD5 |
dcef67cb96be924d942da983763546fb
|
|
| BLAKE2b-256 |
7a8cbb6dac837d4cc39aa6ec7e626a82b3aa04217d8871d036c58c3836cdb0e1
|