An open API service indexing awesome lists of open source software.

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

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
```