Ash FrameworkAF
Ash Frameworkโ€ข8mo agoโ€ข
7 replies
Torkan

ash.codegen --dev & ash_ai / vector attr type

Not sure if this is an ash_ai thing or an ash.codegen --dev with vectors thing, (I'm guessing the latter) but my project is deadlocked now since it wants to add this:

use Ecto.Migration

  def up do
    alter table(:profile_detail_items) do
      modify :content_vector, :vector
    end
  end

  def down do
    alter table(:profile_detail_items) do
      modify :content_vector, :vector
    end
  end


In the previous (non-dev) migration: add :content_vector, :vector, size: 1536

And running the codegen just creates that migration and some new snapshots, and then it wants to do the same all over again, groundhog day-style ๐Ÿ˜›
Solution
fix released
Was this page helpful?