mirror of
https://github.com/imartinez/privateGPT.git
synced 2026-07-17 11:29:56 +00:00
36 lines
886 B
Python
36 lines
886 B
Python
from collections.abc import Callable
|
|
from typing import TYPE_CHECKING, Any, Literal
|
|
|
|
if TYPE_CHECKING:
|
|
from llama_index.core.memory import BaseMemory
|
|
|
|
MemoryProvider = Callable[..., "BaseMemory"]
|
|
|
|
|
|
def _trim_memory(**kwargs: Any) -> "BaseMemory":
|
|
from private_gpt.components.memory.trimming_memory import TrimmingMemory
|
|
|
|
return TrimmingMemory.from_defaults(**kwargs)
|
|
|
|
|
|
_PROVIDERS: dict[str, MemoryProvider] = {
|
|
"trim": _trim_memory,
|
|
}
|
|
|
|
|
|
def register_memory(memory_type: str, provider: MemoryProvider) -> None:
|
|
_PROVIDERS[memory_type] = provider
|
|
|
|
|
|
class Memory:
|
|
@classmethod
|
|
def from_defaults(
|
|
cls,
|
|
type: Literal["trim", "summary"],
|
|
**kwargs: Any,
|
|
) -> "BaseMemory":
|
|
provider = _PROVIDERS.get(type)
|
|
if provider is None:
|
|
raise ValueError(f"Unknown memory type: {type}")
|
|
return provider(**kwargs)
|