https://github.com/manticoresoftware/manticoresearch-text-embeddings
Proof of Concept to use Rust in building lib for generating text embeddings
https://github.com/manticoresoftware/manticoresearch-text-embeddings
Last synced: about 1 month ago
JSON representation
Proof of Concept to use Rust in building lib for generating text embeddings
- Host: GitHub
- URL: https://github.com/manticoresoftware/manticoresearch-text-embeddings
- Owner: manticoresoftware
- Created: 2024-05-06T06:51:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T07:44:31.000Z (about 2 years ago)
- Last Synced: 2024-05-06T07:51:52.785Z (about 2 years ago)
- Language: Rust
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# manticoresearch-text-embeddings
Proof of Concept to use Rust in building lib for generating text embeddings
## How to build rust library
```bash
cargo build --lib --release
```
## How to build examples/test.cpp
```bash
g++ -o test examples/test.cpp -Ltarget/release -lmanticoresearch_text_embeddings -I. -lpthread -ldl -std=c++17
```