Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
restlessronin committed May 24, 2024
1 parent 5546d8c commit 05e0072
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule OpenaiEx.MixProject do
use Mix.Project

@version "0.6.4"
@version "0.6.5"
@description "Community maintained OpenAI API Elixir client for Livebook"
@source_url "https://github.com/restlessronin/openai_ex"

Expand Down
2 changes: 1 addition & 1 deletion notebooks/cleanup.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.6.4"},
{:openai_ex, "~> 0.6.5"},
{:kino, "~> 0.12.3"}
])
```
Expand Down
2 changes: 1 addition & 1 deletion notebooks/completions.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.6.4"},
{:openai_ex, "~> 0.6.5"},
{:kino, "~> 0.12.3"}
])

Expand Down
2 changes: 1 addition & 1 deletion notebooks/dlai_orderbot.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.6.4"},
{:openai_ex, "~> 0.6.5"},
{:kino, "~> 0.11.0"}
])

Expand Down
2 changes: 1 addition & 1 deletion notebooks/streaming_orderbot.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.6.4"},
{:openai_ex, "~> 0.6.5"},
{:kino, "~> 0.12.3"}
])

Expand Down
8 changes: 4 additions & 4 deletions notebooks/userguide.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

```elixir
Mix.install([
# {:openai_ex, "~> 0.6.4"},
{:openai_ex, path: Path.join(__DIR__, "..")},
{:openai_ex, "~> 0.6.5"},
# {:openai_ex, path: Path.join(__DIR__, "..")},
{:kino, "~> 0.12.3"}
])
```
Expand Down Expand Up @@ -43,7 +43,7 @@ Add the following code to the first connection cell:
```elixir
Mix.install(
[
{:openai_ex, "~> 0.6.4"}
{:openai_ex, "~> 0.6.5"}
]
)
```
Expand All @@ -57,7 +57,7 @@ Add the following to your mix.exs file:
```elixir
def deps do
[
{:openai_ex, "~> 0.6.4"}
{:openai_ex, "~> 0.6.5"}
]
end
```
Expand Down

0 comments on commit 05e0072

Please sign in to comment.