| 93 | |
| 94 | @dataclass |
| 95 | class EmbeddingSettings: |
| 96 | model: str |
| 97 | provider: str = "litellm" |
| 98 | device: str | None = None |
| 99 | min_interval_ms: int | None = None |
| 100 | # Extra kwargs spread into ``embedder.embed()`` during indexing/query. |
| 101 | # ``None`` means the user did not set the key; ``{}`` is an explicit empty |
| 102 | # dict (used to opt out of the legacy-bridge warning). |
| 103 | indexing_params: dict[str, Any] | None = None |
| 104 | query_params: dict[str, Any] | None = None |
| 105 | |
| 106 | |
| 107 | @dataclass |
no outgoing calls