You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting up the db in ingest.py, this line fails with the error "type 'issue_label' does not exist". I'm guessing the line to create that type is missing from init_sql
CREATE TABLE github_issue_summaries (
issue_id INTEGER,
text TEXT,
label issue_label NOT NULL,
repo_name TEXT,
embedding VECTOR(1536) NOT NULL
);
The text was updated successfully, but these errors were encountered:
When setting up the db in ingest.py, this line fails with the error "type 'issue_label' does not exist". I'm guessing the line to create that type is missing from init_sql
CREATE TABLE github_issue_summaries (
issue_id INTEGER,
text TEXT,
label issue_label NOT NULL,
repo_name TEXT,
embedding VECTOR(1536) NOT NULL
);
The text was updated successfully, but these errors were encountered: