updates
Some checks failed
CI/CD Pipeline / build (push) Failing after 4s

This commit is contained in:
2026-03-12 13:20:35 -06:00
parent abe27b82d1
commit 399eb9f93f
10 changed files with 203 additions and 55 deletions

View File

@@ -0,0 +1,15 @@
defmodule ElixirAi.Data.AiProviderSchema do
use Ecto.Schema
@primary_key {:id, :binary_id, autogenerate: true}
@foreign_key_type :binary_id
schema "ai_providers" do
field(:name, :string)
field(:model_name, :string)
field(:api_token, :string)
field(:completions_url, :string)
timestamps(type: :utc_datetime)
end
end