mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-14 11:06:13 +05:00
Previously, `archivebox search --json` exported tags as a comma-separated string (e.g. "tag1,tag2"), which required manual parsing by consumers like LlamaIndex, LangChain, and other RAG frameworks. Now `to_dict()` returns tags as a proper JSON array (e.g. ["tag1", "tag2"]), making the export directly usable as structured metadata in LLM/RAG pipelines without additional preprocessing. `from_json()` is updated to accept both list and string formats for backward compatibility with existing JSON imports. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| management/commands | ||
| migrations | ||
| templatetags | ||
| __init__.py | ||
| actors.py | ||
| admin_archiveresults.py | ||
| admin_site.py | ||
| admin_snapshots.py | ||
| admin_tags.py | ||
| admin_users.py | ||
| admin.py | ||
| apps.py | ||
| asgi.py | ||
| forms.py | ||
| host_utils.py | ||
| middleware.py | ||
| models.py | ||
| settings_logging.py | ||
| settings.py | ||
| tests.py | ||
| urls.py | ||
| views.py | ||
| widgets.py | ||
| wsgi.py | ||