Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ jobs:
working-directory: ./hindsight-integrations/hermes
run: uv build --out-dir dist

- name: Build hindsight-agno
working-directory: ./hindsight-integrations/agno
run: uv build --out-dir dist

# Publish in order (client and api-slim first, then api/all wrappers which depend on them)
- name: Publish hindsight-client to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down Expand Up @@ -127,6 +131,12 @@ jobs:
packages-dir: ./hindsight-integrations/hermes/dist
skip-existing: true

- name: Publish hindsight-agno to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: ./hindsight-integrations/agno/dist
skip-existing: true

# Upload artifacts for GitHub release
- name: Upload artifacts
uses: actions/upload-artifact@v7
Expand All @@ -143,6 +153,7 @@ jobs:
hindsight-integrations/crewai/dist/*
hindsight-integrations/pydantic-ai/dist/*
hindsight-integrations/hermes/dist/*
hindsight-integrations/agno/dist/*
retention-days: 1

release-typescript-client:
Expand Down Expand Up @@ -681,6 +692,7 @@ jobs:
cp artifacts/python-packages/hindsight-integrations/litellm/dist/* release-assets/ || true
cp artifacts/python-packages/hindsight-integrations/pydantic-ai/dist/* release-assets/ || true
cp artifacts/python-packages/hindsight-integrations/hermes/dist/* release-assets/ || true
cp artifacts/python-packages/hindsight-integrations/agno/dist/* release-assets/ || true
cp artifacts/python-packages/hindsight-embed/dist/* release-assets/ || true
# TypeScript client
cp artifacts/typescript-client/*.tgz release-assets/ || true
Expand Down
280 changes: 0 additions & 280 deletions hindsight-docs/blog/2026-03-16-n8n-memory-workflows.md

This file was deleted.

3 changes: 3 additions & 0 deletions hindsight-docs/src/components/CookbookGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ function sdkIcon(sdk: string): string | null {
if (sdk.includes('hermes')) {
return '/img/icons/hermes.png';
}
if (sdk.includes('agno')) {
return '/img/icons/agno.png';
}
if (sdk.includes('hindsight-client') || sdk.includes('hindsight-api') || sdk.includes('litellm') || sdk.includes('pydantic') || sdk.includes('crewai')) {
return '/img/icons/python.svg';
}
Expand Down
Binary file not shown.
Binary file added hindsight-docs/static/img/icons/agno.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading