Skip to content

Commit

Permalink
docs(readme): test new logo coloration
Browse files Browse the repository at this point in the history
  • Loading branch information
mateobelanger committed Oct 25, 2024
1 parent 6998809 commit da1e300
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 9 deletions.
19 changes: 13 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="img/rig_logo_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="img/rig_logo.svg">
<img src="img/rig_logo.svg" style="width: 40%; height: 40%;" alt="Rig logo">
<source media="(prefers-color-scheme: dark)" srcset="img/rig+playgrounds_dark_blue.svg">
<source media="(prefers-color-scheme: light)" srcset="img/rig+playgrounds_light_blue.svg">
<img src="img/rig+playgrounds.svg" style="width: 40%; height: 40%;" alt="Rig logo">
</picture>
<br>
<a href="https://crates.io/crates/rig-core"><img src="https://img.shields.io/crates/v/rig-core.svg" /></a>
&nbsp;
<a href="https://crates.io/crates/rig-core"><img src="https://img.shields.io/crates/d/rig-core?color=orange" /></a>
&nbsp;
<a href="https://discord.gg/playgrounds"><img src="https://img.shields.io/discord/511303648119226382?color=%236d82cc&label=Discord&logo=discord&logoColor=white" /></a>
&nbsp;
<a href=""><img src="https://img.shields.io/badge/built_with-Rust-dca282.svg?logo=rust" /></a>
&nbsp;
<a href="https://twitter.com/Playgrounds0x"><img src="https://img.shields.io/badge/Twitter-Follow_Us-1d9bf0.svg?style=flat /"></a>
&nbsp;
<a href="https://github.com/0xPlaygrounds/rig?tab=MIT-1-ov-file"><img src="https://img.shields.io/badge/license-MIT-00bfff.svg?color=red" /></a>
<a href="https://twitter.com/Playgrounds0x"><img src="https://img.shields.io/twitter/follow/Playgrounds0x
"></a>
<br>
<a href="https://docs.rs/rig-core/latest/rig/"><img src="https://docs.rs/rig-core/badge.svg" /></a>
<br>
</p>

&nbsp;



> [!WARNING]
> Here be dragons! Rig is **alpha** software and **will** contain breaking changes as it evolves. We'll annotate them and highlight migration paths as we encounter them.
Expand Down
1 change: 1 addition & 0 deletions img/rig+playgrounds_dark_blue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/rig+playgrounds_white_blue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 32 additions & 2 deletions rig-lancedb/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,32 @@
# Rig-lancedb
Vector store index integration for LanceDB
<div style="display: flex; align-items: center; justify-content: center;">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="../img/rig_logo_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="../img/rig_logo.svg">
<img src="../img/rig_logo.svg" width="200" alt="Rig logo">
</picture>
<span style="font-size: 48px; margin: 0 20px; font-weight: regular; font-family: Open Sans, sans-serif;"> + </span>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://companieslogo.com/img/orig/MDB_BIG.D-96d632a9.png?t=1720244492">
<source media="(prefers-color-scheme: light)" srcset="https://cdn.iconscout.com/icon/free/png-256/free-mongodb-logo-icon-download-in-svg-png-gif-file-formats--wordmark-programming-langugae-freebies-pack-logos-icons-1175140.png?f=webp&w=256">
<img src="https://cdn.iconscout.com/icon/free/png-256/free-mongodb-logo-icon-download-in-svg-png-gif-file-formats--wordmark-programming-langugae-freebies-pack-logos-icons-1175140.png?f=webp&w=256" width="200" alt="MongoDB logo">
</picture>
</div>

<br><br>

## Rig-Lancedb
This companion crate implements a Rig vector store based on Lancedb.

## Usage

Add the companion crate to your `Cargo.toml`, along with the rig-core crate:

```toml
[dependencies]
rig-mongodb = "0.1.2"
rig-core = "0.2.1"
```

You can also run `cargo add rig-lancedb rig-core` to add the most recent versions of the dependencies to your project.

See the [examples](./examples) folder for usage examples.
2 changes: 1 addition & 1 deletion rig-mongodb/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


<div style="display: flex; align-items: center; justify-content: center;">\
<div style="display: flex; align-items: center; justify-content: center;">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="../img/rig_logo_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="../img/rig_logo.svg">
Expand Down

0 comments on commit da1e300

Please sign in to comment.