@Logan M
I am getting an import error when I try to import
from llama_cloud_services import LlamaExtract
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
Cell In[76], line 15
12 from PyPDF2 import PdfReader
13 from urllib.parse import urlparse
---> 15 from llama_cloud_services import LlamaExtract
16 from pydantic import BaseModel, Field
17 from typing import List, Optional
File ~/myenv/lib/python3.12/site-packages/llama_cloud_services/__init__.py:2
1 from llama_cloud_services.parse import LlamaParse
----> 2 from llama_cloud_services.report import ReportClient, LlamaReport
3 from llama_cloud_services.extract import LlamaExtract, ExtractionAgent
5 __all__ = [
6 "LlamaParse",
7 "ReportClient",
(...)
10 "ExtractionAgent",
11 ]
File ~/myenv/lib/python3.12/site-packages/llama_cloud_services/report/__init__.py:1
----> 1 from llama_cloud_services.report.report import ReportClient
2 from llama_cloud_services.report.base import LlamaReport
4 __all__ = ["ReportClient", "LlamaReport"]
File ~/myenv/lib/python3.12/site-packages/llama_cloud_services/report/report.py:9
6 from datetime import datetime
7 from enum import Enum
----> 9 from llama_cloud.types import (
10 ReportEventItemEventData_Progress,
11 ReportMetadata,
12 EditSuggestion,
13 ReportResponse,
14 ReportPlan,
15 ReportBlock,
16 ReportPlanBlock,
17 Report,
18 )
20 if TYPE_CHECKING:
21 from llama_cloud_services.report.base import LlamaReport
ImportError: cannot import name 'ReportEventItemEventData_Progress' from 'llama_cloud.types' (/Users/myenv/lib/python3.12/site-packages/llama_cloud/types/__init__.py)