mirror of
https://github.com/linsa-io/linsa.git
synced 2026-03-17 23:03:55 +01:00
* wip * wip * wip3 * chore: utils * feat: add command * wip * fix: key duplicate * fix: move and check * fix: use react-use instead * fix: sidebar * chore: make dynamic * chore: tablet mode * chore: fix padding * chore: link instead of inbox * fix: use dnd kit * feat: add select component * chore: use atom * refactor: remove dnd provider * feat: disabled drag when sort is not manual * search route * . * feat: accessibility * fix: search * . * . * . * fix: sidebar collapsed * ai search layout * . * . * . * . * ai responsible content * . * . * . * . * . * global topic route * global topic correct route * topic buttons * sidebar search navigation * ai * Update jazz * . * . * . * . * . * learning status * . * . * chore: content header * fix: pointer none when dragging. prevent auto click after drag end * fix: confirm * fix: prevent drag when editing * chore: remove unused fn * fix: check propagation * chore: list * chore: tweak sonner * chore: update stuff * feat: add badge * chore: close edit when create * chore: escape on manage form * refactor: remove learn path * css: responsive item * chore: separate pages and topic * reafactor: remove new-schema * feat(types): extend jazz type so it can be nullable * chore: use new types * fix: missing deps * fix: link * fix: sidebar in layout * fix: quotes * css: use medium instead semi * Actual streaming and rendering markdown response * . * . * . * . * . * . * . * . * . * . * . * . * . * . * . * . * . * . * . * . * . * chore: metadata * feat: la-editor * . * fix: editor and page * . * . * . * . * . * . * fix: remove link * chore: page sidebar * fix: remove 'replace with learning status' * fix: link * fix: link * chore: update schema * chore: use new schema * fix: instead of showing error, just do unique slug * feat: create slug * refactor apply * update package json * fix: schema personal page * chore: editor * feat: pages * fix: metadata * fix: jazz provider * feat: handling data * feat: page detail * chore: server page to id * chore: use id instead of slug * chore: update content header * chore: update link header implementation * refactor: global.css * fix: la editor use animation frame * fix: editor export ref * refactor: page detail * chore: tidy up schema * chore: adapt to new schema * fix: wrap using settimeout * fix: wrap using settimeout * . * . --------- Co-authored-by: marshennikovaolga <marshennikova@gmail.com> Co-authored-by: Nikita <github@nikiv.dev> Co-authored-by: Anselm <anselm.eickhoff@gmail.com> Co-authored-by: Damian Tarnawski <gthetarnav@gmail.com>
35 lines
2.3 KiB
TypeScript
35 lines
2.3 KiB
TypeScript
import { co, CoMap, Encoders } from "jazz-tools"
|
|
import { GlobalTopic } from "./global-topic"
|
|
|
|
// GlobalLinkAiSummary is high quality title, description, summary of link (generated by AI)
|
|
export class GlobalLinkAiSummary extends CoMap {
|
|
link = co.ref(GlobalLink) // link the summary is for
|
|
aiModelUsed = co.string // model used to generate summary, e.g. "gpt-4o"
|
|
title = co.string // high quality title of link
|
|
description = co.string // high quality description of link
|
|
summary = co.string // high quality summary of link
|
|
// vectorContent = co.optional.vector // vector content of link, TODO: jazz needs support for this
|
|
}
|
|
|
|
// GlobalLinkSummary is high quality title, description, summary of link
|
|
export class GlobalLinkSummary extends CoMap {
|
|
link = co.ref(GlobalLink) // link the summary is for
|
|
title = co.string // high quality title of link
|
|
description = co.string // high quality description of link
|
|
summary = co.string // high quality summary of link
|
|
}
|
|
|
|
// GlobalLink is link with unique URL that holds some useful metadata. Can be used to do queries like `most popular links added by users` etc.
|
|
export class GlobalLink extends CoMap {
|
|
url = co.string // url without the protocol (e.g. "learn-anything.xyz") (unique)
|
|
urlTitle = co.string // title of the page (as grabbed from url itself)
|
|
protocol = co.literal("https") // TODO: other protocols? perhaps should be `co.string` for user custom protocols?
|
|
aiSummary = co.optional.ref(GlobalLinkAiSummary) // TODO: should probably be a list? with allowing users to vote on results so 'top' one can be shown too
|
|
summary = co.optional.ref(GlobalLinkSummary) // the very 'best' summary of link (can be part AI generated, part human written, whatever is best)
|
|
urlWasCreatedOnInternetAt = co.optional.encoded(Encoders.Date) // date url was created on internet at (can pass just year or year+month or year+month+day)
|
|
globalMainTopic = co.optional.ref(GlobalTopic) // each global link can have one main topic (to closest approximation)
|
|
public = co.optional.boolean // if true, link is accessible from global search
|
|
processed = co.optional.encoded(Encoders.Date) // date link was processed at by LA (update metadata etc.)
|
|
// websiteDown = co.boolean // if website is 404 or down TODO: add it later when we have service to check for dead links
|
|
}
|