mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-12 23:01:07 +00:00
export withsupermemory wrapper from package
This commit is contained in:
parent
ca61502107
commit
7edcb16c16
2 changed files with 8 additions and 0 deletions
|
|
@ -15,6 +15,10 @@ from .tools import (
|
|||
create_search_memories_tool,
|
||||
create_add_memory_tool,
|
||||
)
|
||||
from .wrapper import (
|
||||
with_supermemory,
|
||||
WithSupermemoryOptions,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
# Tools
|
||||
|
|
@ -31,4 +35,7 @@ __all__ = [
|
|||
"execute_memory_tool_calls",
|
||||
"create_search_memories_tool",
|
||||
"create_add_memory_tool",
|
||||
# Wrapper
|
||||
"with_supermemory",
|
||||
"WithSupermemoryOptions",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ from openai.types.chat import (
|
|||
ChatCompletionMessageToolCall,
|
||||
ChatCompletionToolMessageParam,
|
||||
ChatCompletionFunctionToolParam,
|
||||
ChatCompletionToolParam,
|
||||
)
|
||||
import supermemory
|
||||
from supermemory.types import (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue