MCPcopy Create free account
hub / github.com/DVampire/FinAgent / add

Method add

finagent/memory/base.py:62–72  ·  view source on GitHub ↗

Add data to memory. Args: **kwargs: Other keyword arguments that subclasses might use.

(
        self,
        *args: Any,
        **kwargs: Any,
    )

Source from the content-addressed store, hash-verified

60
61 @abc.abstractmethod
62 def add(
63 self,
64 *args: Any,
65 **kwargs: Any,
66 ) -> None:
67 """Add data to memory.
68
69 Args:
70 **kwargs: Other keyword arguments that subclasses might use.
71 """
72 pass
73
74 @abc.abstractmethod
75 def similarity_search(

Callers 4

add_memoryMethod · 0.45
add_embeddingsMethod · 0.45
plot_klineFunction · 0.45
plot_tradingFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected