Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion sdks/python/src/honcho/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

from __future__ import annotations

import sys
from collections.abc import AsyncIterator, Iterator
from typing import Self

if sys.version_info < (3, 11):
from typing_extensions import Self
else:
from typing import Self

__all__ = [
"DialecticStreamResponse",
Expand Down