|
55 | 55 | "outputs": [],
|
56 | 56 | "source": [
|
57 | 57 | "extraction_templates = {\n",
|
58 |
| - " \"invoice\": ('../analyzer_templates/invoice.json', '../data/invoice.pdf' ),\n", |
59 |
| - " \"call_recording\": ('../analyzer_templates/call_recording_analytics.json', '../data/callCenterRecording.mp3'),\n", |
| 58 | + " # Extract fields from invoices (no grounding sources or confidence scores).\n", |
| 59 | + " \"invoice\": ('../analyzer_templates/invoice.json', '../data/invoice.pdf'),\n", |
| 60 | + "\n", |
| 61 | + " # Extract fields from invoices, including grounding sources and confidence scores (optional add-on).\n", |
| 62 | + " \"invoice_field_source\": ('../analyzer_templates/invoice_field_source.json', '../data/invoice.pdf'),\n", |
| 63 | + "\n", |
| 64 | + " # Extract insights from call recordings (e.g., summary, topics, mentioned companies, and people).\n", |
| 65 | + " \"call_recording\": ('../analyzer_templates/call_recording_analytics.json', '../data/callCenterRecording.mp3'),\n", |
| 66 | + "\n", |
| 67 | + " # Extract summary and sentiment from conversation audio (e.g., customer service calls).\n", |
60 | 68 | " \"conversation_audio\": ('../analyzer_templates/conversational_audio_analytics.json', '../data/callCenterRecording.mp3'),\n",
|
61 |
| - " \"marketing_video\": ('../analyzer_templates/marketing_video.json', '../data/FlightSimulator.mp4' )\n", |
| 69 | + "\n", |
| 70 | + " # Extract descriptions and sentiment analysis from marketing videos.\n", |
| 71 | + " \"marketing_video\": ('../analyzer_templates/marketing_video.json', '../data/FlightSimulator.mp4'),\n", |
62 | 72 | "}"
|
63 | 73 | ]
|
64 | 74 | },
|
|
0 commit comments