Skip to content

Commit

Permalink
fix for ragknowledge when combining strings and files in the knowledg…
Browse files Browse the repository at this point in the history
…e list in the characters
  • Loading branch information
web3gh committed Jan 11, 2025
1 parent 565f4e7 commit ce5a1ac
Show file tree
Hide file tree
Showing 3 changed files with 297 additions and 164 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ BEGIN
FROM pg_extension
WHERE extname = 'vector'
) THEN
CREATE EXTENSION vector
CREATE EXTENSION vector IF NOT EXISTS
SCHEMA extensions;
END IF;
END $$;
Expand All @@ -33,7 +33,7 @@ BEGIN
FROM pg_extension
WHERE extname = 'fuzzystrmatch'
) THEN
CREATE EXTENSION fuzzystrmatch
CREATE EXTENSION fuzzystrmatch IF NOT EXISTS
SCHEMA extensions;
END IF;
END $$;
Expand Down
Loading

0 comments on commit ce5a1ac

Please sign in to comment.