Skip to content

Commit ee0e40b

Browse files
committed
Merge branch 'refs/heads/main' into dev
2 parents 71104ea + 65a8aa2 commit ee0e40b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ObjectBox Python
22
================
3-
[ObjectBox](https://objectbox.io) Python is a lightweight yet powerful on-device database & vector database.
3+
[ObjectBox](https://objectbox.io) Python is a lightweight yet powerful on-device object and vector database.
44
Store Python objects and vectors directly with an easy-to-use CRUD API while enjoying exceptional speed and efficiency.
55
And because it's an embedded database, there's no setup required.
66

7-
Its advanced vector search empowers AI applications including RAG, generative AI, and similarity searches.
7+
Its advanced vector search empowers on-device AI applications including RAG, generative AI, and similarity searches.
88

9-
Designed for high performance, the ObjectBox database runs locally on-device.
10-
As an offline-first solution, ObjectBox makes sure your app reliably works offline as well as online
9+
The ObjectBox database delivers high-performance on commodity hardware - locally, on-device.
10+
On top, as an offline-first solution, ObjectBox makes sure your app reliably works offline as well as online
1111
(via [Sync](https://objectbox.io/sync/)).
1212

1313
_Table of Contents_
@@ -43,7 +43,7 @@ Code Example: CRUD (Create, Read, Update, Delete)
4343
What does using ObjectBox in Python look like?
4444

4545
```python
46-
from objectbox import *
46+
from objectbox import Entity, Id, Store, String
4747

4848
@Entity()
4949
class Person:

example/vectorsearch-cities-notebook/Vector-Search-City.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
}
6868
],
6969
"source": [
70-
"!pip install --upgrade --pre objectbox"
70+
"!pip install --upgrade objectbox"
7171
]
7272
},
7373
{
@@ -86,7 +86,7 @@
8686
{
8787
"cell_type": "code",
8888
"source": [
89-
"from objectbox import *\n",
89+
"from objectbox import Entity, Float32Vector, HnswIndex, Id, Store, String\n",
9090
"\n",
9191
"@Entity()\n",
9292
"class City:\n",
@@ -619,4 +619,4 @@
619619
"outputs": []
620620
}
621621
]
622-
}
622+
}

0 commit comments

Comments
 (0)