Skip to content

Commit

Permalink
fix: typeddict import
Browse files Browse the repository at this point in the history
  • Loading branch information
desaxce committed Aug 27, 2024
1 parent ead47be commit c3bd506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions literalai/instrumentation/llamaindex.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import uuid
from typing import TYPE_CHECKING, Any, Dict, List, Optional, TypedDict, Union, cast

from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union, cast
from typing_extensions import TypedDict
from llama_index.core.base.llms.types import MessageRole
from llama_index.core.base.response.schema import Response, StreamingResponse
from llama_index.core.instrumentation import get_dispatcher
Expand Down

0 comments on commit c3bd506

Please sign in to comment.