Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: mark ruby as in beta #743

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading