Skip to content

Commit

Permalink
use TypedDict from typing_extensions (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
darthtrevino authored Apr 18, 2024
1 parent 8b0755d commit c9a0028
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphrag/llm/types/llm_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"""LLM Types."""

from dataclasses import dataclass, field
from typing import Generic, TypedDict, TypeVar
from typing import Generic, TypeVar

from typing_extensions import NotRequired
from typing_extensions import NotRequired, TypedDict

from .llm_callbacks import IsResponseValidFn

Expand Down

0 comments on commit c9a0028

Please sign in to comment.