Skip to content

Commit db43713

Browse files
committed
Fixed style [skip ci]
1 parent d3de935 commit db43713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/cohere/example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ std::vector<std::string> fetch_embeddings(const std::vector<std::string>& texts,
2828
json response = json::parse(r.text);
2929

3030
std::vector<std::string> embeddings;
31-
for (auto& v: response["embeddings"]["ubinary"]) {
31+
for (auto& v : response["embeddings"]["ubinary"]) {
3232
std::stringstream buf;
3333
for (uint8_t c : v) {
3434
std::bitset<8> b{c};

0 commit comments

Comments
 (0)