6ede33ccdb
Build and Push Docker Images / create_manifest (web, surfsense-web, , cpu) (push) Has been cancelled
Build and Push Docker Images / finalize_release (push) Has been cancelled
Obsidian Plugin Lint / lint (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_web, cpu, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64, , runner, false, cpu) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_web, cpu, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64, , runner, false, cpu) (push) Has been cancelled
Build and Push Docker Images / compute_version (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cpu, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, , production, false, cpu) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cpu, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, , production, false, cpu) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cu126, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, -cuda126, production, true, cuda126) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cu126, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, -cuda126, production, true, cuda126) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cu128, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, -cuda, production, true, cuda) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cu128, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, -cuda, production, true, cuda) (push) Has been cancelled
Build and Push Docker Images / verify_digests (push) Has been cancelled
Build and Push Docker Images / create_manifest (backend, surfsense-backend, , cpu) (push) Has been cancelled
Build and Push Docker Images / create_manifest (backend, surfsense-backend, -cuda, cuda) (push) Has been cancelled
Build and Push Docker Images / create_manifest (backend, surfsense-backend, -cuda126, cuda126) (push) Has been cancelled
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import { json, number, string, table } from "@rocicorp/zero";
|
|
|
|
export const newChatMessageTable = table("new_chat_messages")
|
|
.columns({
|
|
id: number(),
|
|
role: string(),
|
|
content: json(),
|
|
threadId: number().from("thread_id"),
|
|
authorId: string().optional().from("author_id"),
|
|
createdAt: number().from("created_at"),
|
|
source: string(),
|
|
platformMetadata: json().optional().from("platform_metadata"),
|
|
// Per-turn correlation id sourced from ``configurable.turn_id``
|
|
// at streaming time. Required by the inline Revert button's
|
|
// (chat_turn_id, tool_name, position) fallback in tool-fallback.tsx
|
|
// — without it the live-collab Zero sync would clobber the
|
|
// metadata we set during streaming and the button would vanish
|
|
// the moment Zero re-syncs after the stream finishes.
|
|
turnId: string().optional().from("turn_id"),
|
|
})
|
|
.primaryKey("id");
|
|
|
|
export const newChatThreadTable = table("new_chat_threads")
|
|
.columns({
|
|
id: number(),
|
|
workspaceId: number().from("workspace_id"),
|
|
})
|
|
.primaryKey("id");
|
|
|
|
export const chatCommentTable = table("chat_comments")
|
|
.columns({
|
|
id: number(),
|
|
messageId: number().from("message_id"),
|
|
threadId: number().from("thread_id"),
|
|
parentId: number().optional().from("parent_id"),
|
|
authorId: string().optional().from("author_id"),
|
|
content: string(),
|
|
createdAt: number().from("created_at"),
|
|
updatedAt: number().from("updated_at"),
|
|
})
|
|
.primaryKey("id");
|
|
|
|
export const chatSessionStateTable = table("chat_session_state")
|
|
.columns({
|
|
id: number(),
|
|
threadId: number().from("thread_id"),
|
|
aiRespondingToUserId: string().optional().from("ai_responding_to_user_id"),
|
|
updatedAt: number().from("updated_at"),
|
|
})
|
|
.primaryKey("id");
|