forked from zenml-io/zenml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
19 lines (16 loc) · 732 Bytes
/
__init__.py
File metadata and controls
19 lines (16 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""Document Analysis Pipeline - Production Ready with ZenML.
This example demonstrates how to build and deploy a document analysis system
as an HTTP endpoint using ZenML pipelines. Analyze documents with AI-powered
summarization, keyword extraction, sentiment analysis, and readability scoring.
Key Features:
- Deploy pipelines as scalable HTTP endpoints
- LLM-based analysis with deterministic fallbacks
- Quality evaluation and continuous improvement
- Web interface and programmatic client examples
Main Components:
- models.py: Pydantic data models
- pipelines/: Document analysis and evaluation pipelines
- steps/: Individual processing steps
- streamlit_app.py: Web interface
- run_evaluation.py: Quality assessment CLI
"""