Some checks failed
CI / build-and-test (push) Failing after -31m25s
* Update project creation and retrieval to use generated models * Modify skill addition and listing to utilize generated models * Refactor thought handling to incorporate generated models * Adjust tool annotations to align with new model structure * Update API calls in the UI to use new ResolveSpec-based endpoints * Enhance stats retrieval logic to aggregate thought metadata
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
Table thoughts {
|
|
id bigserial [pk]
|
|
guid uuid [unique, not null, default: `gen_random_uuid()`]
|
|
content text [not null]
|
|
metadata jsonb [default: `'{}'::jsonb`]
|
|
created_at timestamptz [default: `now()`]
|
|
updated_at timestamptz [default: `now()`]
|
|
project_id uuid [ref: > projects.guid]
|
|
archived_at timestamptz
|
|
}
|
|
|
|
Table projects {
|
|
id bigserial [pk]
|
|
guid uuid [unique, not null, default: `gen_random_uuid()`]
|
|
name text [unique, not null]
|
|
description text
|
|
created_at timestamptz [default: `now()`]
|
|
last_active_at timestamptz [default: `now()`]
|
|
}
|
|
|
|
Table thought_links {
|
|
id serial [pk]
|
|
from_id bigint [not null, ref: > thoughts.id]
|
|
to_id bigint [not null, ref: > thoughts.id]
|
|
relation text [not null]
|
|
created_at timestamptz [default: `now()`]
|
|
|
|
indexes {
|
|
(from_id, to_id, relation) [pk]
|
|
from_id
|
|
to_id
|
|
}
|
|
}
|
|
|
|
Table embeddings {
|
|
id bigserial [pk]
|
|
guid uuid [unique, not null, default: `gen_random_uuid()`]
|
|
thought_id uuid [not null, ref: > thoughts.guid]
|
|
model text [not null]
|
|
dim int [not null]
|
|
embedding vector [not null]
|
|
created_at timestamptz [default: `now()`]
|
|
updated_at timestamptz [default: `now()`]
|
|
|
|
indexes {
|
|
(thought_id, model) [unique]
|
|
thought_id
|
|
}
|
|
}
|