diff --git a/hindsight-all/hindsight/py.typed b/hindsight-all/hindsight/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-api-slim/hindsight_api/py.typed b/hindsight-api-slim/hindsight_api/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-clients/python/hindsight_client/py.typed b/hindsight-clients/python/hindsight_client/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-clients/python/hindsight_client_api/py.typed b/hindsight-clients/python/hindsight_client_api/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-embed/hindsight_embed/py.typed b/hindsight-embed/hindsight_embed/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-integrations/ag2/hindsight_ag2/py.typed b/hindsight-integrations/ag2/hindsight_ag2/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-integrations/agno/hindsight_agno/py.typed b/hindsight-integrations/agno/hindsight_agno/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-integrations/crewai/hindsight_crewai/py.typed b/hindsight-integrations/crewai/hindsight_crewai/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-integrations/langgraph/hindsight_langgraph/py.typed b/hindsight-integrations/langgraph/hindsight_langgraph/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-integrations/litellm/hindsight_litellm/py.typed b/hindsight-integrations/litellm/hindsight_litellm/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-integrations/llamaindex/hindsight_llamaindex/py.typed b/hindsight-integrations/llamaindex/hindsight_llamaindex/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-integrations/pydantic-ai/hindsight_pydantic_ai/py.typed b/hindsight-integrations/pydantic-ai/hindsight_pydantic_ai/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/hindsight-integrations/strands/hindsight_strands/py.typed b/hindsight-integrations/strands/hindsight_strands/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/scripts/generate-clients.sh b/scripts/generate-clients.sh index 06e22b44..abf01c57 100755 --- a/scripts/generate-clients.sh +++ b/scripts/generate-clients.sh @@ -148,6 +148,11 @@ if [ -f "$README_BACKUP" ]; then rm "$README_BACKUP" fi +# Create PEP 561 py.typed marker files for type checker support +echo "📦 Creating PEP 561 py.typed marker files..." +touch "$PYTHON_CLIENT_DIR/hindsight_client_api/py.typed" +touch "$PYTHON_CLIENT_DIR/hindsight_client/py.typed" + # Keep our custom pyproject.toml (don't let generator overwrite it) if [ -f "setup.py" ]; then echo "Note: setup.py generated but we're using pyproject.toml"