Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lebrunel committed Apr 18, 2024
1 parent b20f704 commit 75112c3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
Anthropix is an open-source Elixir client for the Anthropic API, providing a simple and convenient way to integrate Claude, Anthropic's powerful language model, into your applications.

- ✅ API client fully implementing the [Anthropic API](https://docs.anthropic.com/claude/reference/getting-started-with-the-api)
- 🛠️ Tool use (function calling)
- 🛜 Streaming API requests
- Stream to an Enumerable
- Or stream messages to any Elixir process
Expand All @@ -20,7 +21,7 @@ The package can be installed by adding `anthropix` to your list of dependencies
```elixir
def deps do
[
{:anthropix, "~> 0.2"}
{:anthropix, "~> 0.3"}
]
end
```
Expand Down
1 change: 1 addition & 0 deletions lib/anthropix.ex
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ defmodule Anthropix do
model, into your applications.
- ✅ API client fully implementing the [Anthropic API](https://docs.anthropic.com/claude/reference/getting-started-with-the-api)
- 🛠️ Tool use (function calling)
- 🛜 Streaming API requests
- Stream to an Enumerable
- Or stream messages to any Elixir process
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Anthropix.MixProject do
name: "Anthropix",
description: "Unofficial Anthropic API client for Elixir. Integrate Claude, Anthropic's powerful language model, into your applications.",
source_url: "https://github.com/lebrunel/anthropix",
version: "0.2.0",
version: "0.3.0",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit 75112c3

Please sign in to comment.