@@ -20,9 +20,11 @@ EXAMPLES:
2020 openai file list --jq ' .[].id'
2121 openai file list --jq " .[] | select(.sizeInBytes > 100000) | .id"
2222 openai vector create --name mystore --meta ' key1=value1' --meta ' key2=value'
23- openai vector create --name myfiles --file asdf123 --file qwer456
23+ --file asdf123 --file qwer456
2424 openai vector search mystore " what's the return policy on headphones?"
25- --score 0.7
25+ --score 0.7 --filter region=us
26+ openai vector search mystore " most popular stores?" -f region=us -f
27+ popularity> =80
2628
2729OPTIONS:
2830 -h, --help Prints help information
@@ -204,12 +206,13 @@ USAGE:
204206
205207EXAMPLES:
206208 openai vector create --name mystore --meta ' key1=value1' --meta ' key2=value'
207- openai vector create --name myfiles --file asdf123 --file qwer456
209+ --file asdf123 --file qwer456
208210 openai vector search mystore " what's the return policy on headphones?"
209- --score 0.7
210- openai vector search mystore " physical stores?" --filter region=us
211+ --score 0.7 --filter region=us
211212 openai vector search mystore " most popular stores?" -f region=us -f
212213popularity> =80
214+ openai file add mystore store.md -a region=us
215+ openai file add mystore nypop.md -a region=us -a popularity=90
213216
214217OPTIONS:
215218 -h, --help Prints help information
@@ -240,8 +243,7 @@ USAGE:
240243
241244EXAMPLES:
242245 openai vector search mystore " what's the return policy on headphones?"
243- --score 0.7
244- openai vector search mystore " physical stores?" --filter region=us
246+ --score 0.7 --filter region=us
245247 openai vector search mystore " most popular stores?" -f region=us -f
246248popularity> =80
247249
0 commit comments