mirror of
https://github.com/katanemo/plano.git
synced 2026-05-03 04:42:49 +02:00
rename envoyfilter => arch (#91)
* rename envoyfilter => arch * fix more files * more fixes * more renames
This commit is contained in:
parent
7168b14ed3
commit
ea86f73605
33 changed files with 91 additions and 99 deletions
16
arch/init_vector_store.sh
Normal file
16
arch/init_vector_store.sh
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo 'Deleting prompt_vector_store collection'
|
||||
curl -X DELETE http://localhost:16333/collections/prompt_vector_store
|
||||
echo
|
||||
echo 'Creating prompt_vector_store collection'
|
||||
curl -X PUT 'http://localhost:16333/collections/prompt_vector_store' \
|
||||
-H 'Content-Type: application/json' \
|
||||
--data-raw '{
|
||||
"vectors": {
|
||||
"size": 1024,
|
||||
"distance": "Cosine"
|
||||
}
|
||||
}'
|
||||
echo
|
||||
echo 'Created prompt_vector_store collection'
|
||||
Loading…
Add table
Add a link
Reference in a new issue