Skip to content

Commit

Permalink
docs: mark ruby as in beta
Browse files Browse the repository at this point in the history
  • Loading branch information
sxlijin committed Jul 2, 2024
1 parent 77a4db7 commit 7f0bb0e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/docs/calling-baml/calling-functions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ if (require.main === module) {
```
</Tab>

<Tab title="Ruby">
<Tab title="Ruby (beta)">

BAML will generate `Baml.Client.ClassifyMessage()` for you, which you can use like so:

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/calling-baml/concurrent-calls.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ if (require.main === module) {
```
</Tab>

<Tab title="Ruby">
<Tab title="Ruby (beta)">

BAML Ruby does not currently support async/concurrent calls.
BAML Ruby (beta) does not currently support async/concurrent calls.

Please [contact us](/contact) if this is something you need.

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/calling-baml/dynamic-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async function run() {
```


```ruby Ruby
```ruby Ruby (beta)
Not available yet
```
</CodeGroup>
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/calling-baml/generate-baml-client.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ yarn add @boundaryml/baml
yarn run baml-cli generate --from path/to/baml_src
```

```bash Ruby
```bash Ruby (beta)
bundle add baml
bundle exec baml-cli generate --from path/to/baml_src
```
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
steps:
- uses: actions/checkout@v4

# Install your Python/Node/Ruby dependencies here
# Install your Python/Node/Ruby (beta) dependencies here

- name: Generate BAML client
run: baml-cli generate --from baml_src
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/calling-baml/multi-modal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import { Image } from "@boundaryml/baml"

```

```ruby Ruby
```ruby Ruby (beta)
we're working on it!
```
Expand Down Expand Up @@ -88,7 +88,7 @@ import { Audio } from "@boundaryml/baml"
```
```ruby Ruby
```ruby Ruby (beta)
we're working on it!
```
</CodeGroup>
2 changes: 1 addition & 1 deletion docs/docs/calling-baml/set-env-vars.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dotenv.config()
import { b } from 'baml-client'
```

```ruby Ruby
```ruby Ruby (beta)
require 'dotenv/load'

# Wait to import the BAML client until after loading environment variables
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/calling-baml/streaming.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ if (require.main === module) {
```
</Tab>

<Tab title="Ruby">
<Tab title="Ruby (beta)">
BAML will generate `Baml.Client.stream.ExtractReceiptInfo()` for you,
which you can use like so:

Expand Down

0 comments on commit 7f0bb0e

Please sign in to comment.