mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 11:29:39 +08:00
14 lines
188 B
Python
14 lines
188 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import pydantic
|
||
|
|
|
||
|
|
from typing import Any
|
||
|
|
|
||
|
|
|
||
|
|
class RetrieveResultEntry(pydantic.BaseModel):
|
||
|
|
id: str
|
||
|
|
|
||
|
|
metadata: dict[str, Any]
|
||
|
|
|
||
|
|
distance: float
|