Created
January 30, 2026 15:29
-
-
Save rpappalax/2e0ec94cb28f6efeb78a78036e103da1 to your computer and use it in GitHub Desktop.
app/retrieval/types.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import annotations | |
| from dataclasses import dataclass | |
| from typing import List | |
| @dataclass(frozen=True) | |
| class Note: | |
| note_id: str | |
| content: str | |
| source: str | None = None | |
| created_at: str | None = None | |
| embedding: List[float] | None = None |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment