Skip to content

Commit b406fcd

Browse files
committed
Merge 'feat/rename' into 'master'
feat: fix See merge request: !14
2 parents 1458ef9 + 08f5cf1 commit b406fcd

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ venv
99

1010
AGENTS.md
1111
.env
12+
13+
dist/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "vikingdb"
6+
name = "vikingdb-python-sdk"
77
dynamic = ["version"]
88
description = "vikingdb Python SDK"
99
readme = "README.md"

vikingdb/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@
66
from .auth import APIKey, IAM
77
from .request_options import RequestOptions
88
from . import vector
9+
from . import memory
910
from .vector import (
1011
CollectionClient,
1112
EmbeddingClient,
1213
IndexClient,
1314
VikingVector,
1415
)
16+
from .memory import (
17+
VikingMem,
18+
Collection,
19+
)
1520
__all__ = [
1621
"IAM",
1722
"APIKey",
@@ -21,4 +26,7 @@
2126
"RequestOptions",
2227
"VikingVector",
2328
"vector",
29+
"memory",
30+
"VikingMem",
31+
"Collection",
2432
]

0 commit comments

Comments
 (0)