Spaces:
Sleeping
Sleeping
File size: 810 Bytes
f866820 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# Scripts Directory
This directory contains utility scripts for various operational tasks related to the RAG Document Assistant.
## Script Organization
Scripts are organized by functional category:
### Ingestion
- `test_ingestion.py` - Test the document ingestion pipeline
- `ingest_documents.py` - Run the full document ingestion process
- `regenerate_with_semantic.py` - Regenerate embeddings using semantic model
### Search
- `search_documents.py` - Perform local similarity search over embeddings
### Verification
- `check_pinecone.py` - Verify Pinecone connectivity
- `check_index_metadata.py` - Check index metadata
## Usage
Most scripts can be run directly with Python:
```bash
python scripts/script_name.py [arguments]
```
Refer to each script's documentation for specific usage instructions. |