1. The Arcade Worker doesn't like it when the package name is different than the directory name. This PR renames the directory from `arcade_notion` to `arcade_notion_toolkit` 2. `Notion` is not a well-known provider name in `arcade-ai==1.0.5`, I've updated the dep to represent this.
19 lines
430 B
Python
19 lines
430 B
Python
from arcade_notion_toolkit.tools.pages import (
|
|
create_page,
|
|
get_page_content_by_id,
|
|
get_page_content_by_title,
|
|
)
|
|
from arcade_notion_toolkit.tools.search import (
|
|
get_object_metadata,
|
|
get_workspace_structure,
|
|
search_by_title,
|
|
)
|
|
|
|
__all__ = [
|
|
"create_page",
|
|
"get_object_metadata",
|
|
"get_page_content_by_id",
|
|
"get_page_content_by_title",
|
|
"search_by_title",
|
|
"get_workspace_structure",
|
|
]
|