-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/data ingestion system #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c508cf2
70acdd3
254a82f
2b76c5f
6b5a0aa
2daad6f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,4 +8,5 @@ sse-starlette | |
| pydantic>=2.7.0 | ||
| pydantic-settings | ||
| python-dotenv | ||
| langchain-community | ||
| fastembed | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| -- for gemini-embedding-001 | ||
|
|
||
| -- 1. Drop the existing function | ||
| DROP FUNCTION IF EXISTS match_documents(vector(1536), int, jsonb); | ||
| DROP FUNCTION IF EXISTS match_documents(vector(3072), int, jsonb); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Find all migration files and examine match_documents signatures
echo "=== Finding migration files ==="
git ls-files supabase/migrations/*.sql | sort
echo ""
echo "=== Migration files with match_documents ==="
fd -e sql . supabase/migrations | sort | while read f; do
if rg -q "match_documents" "$f"; then
echo "--- $f ---"
cat -n "$f"
fi
doneRepository: SanghunYun95/philo-rag Length of output: 6754 match_count 기본값 및 범위 검사 제거 - 동작 변경 확인 DROP 문의 시그니처는 정확히 20260223 마이그레이션과 일치하므로 올바릅니다. 다만 함수 재생성 시 두 가지 문제가 있습니다:
이러한 변경이 의도적인지 확인하세요. 만약 의도되지 않은 경우, 20260223의 동작을 유지하거나 일관된 정책을 20260225141500 마이그레이션에도 적용해야 합니다. 🤖 Prompt for AI Agents |
||
|
|
||
| -- 2. Alter the table column | ||
| ALTER TABLE documents | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.