-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
41 lines (36 loc) · 805 Bytes
/
mix.exs
File metadata and controls
41 lines (36 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
defmodule AutoElixir.MixProject do
use Mix.Project
@source_url "https://github.com/nshkrdotcom/AutoElixir"
def project do
[
app: :auto_elixir,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package()
]
end
def application do
[
extra_applications: [:logger],
mod: {AutoElixir.Application, []}
]
end
defp deps do
[
{:langchain, path: "../langchain"},
{:jason, "~> 1.4"},
{:req, "~> 0.4"},
{:ecto, "~> 3.10"},
{:dotenv, "~> 3.0.0", only: [:dev, :test]},
{:nx, "~> 0.7.0"} # Required for LangChain's Bumblebee support
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
]
end
end