| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543 |
- import { Slug } from "@opencode-ai/util/slug"
- import path from "path"
- import { BusEvent } from "@/bus/bus-event"
- import { Bus } from "@/bus"
- import { Decimal } from "decimal.js"
- import z from "zod"
- import { type ProviderMetadata } from "ai"
- import { Config } from "../config/config"
- import { Flag } from "../flag/flag"
- import { Identifier } from "../id/id"
- import { Installation } from "../installation"
- import { Storage } from "../storage/storage"
- import { Log } from "../util/log"
- import { MessageV2 } from "./message-v2"
- import { Instance } from "../project/instance"
- import { SessionPrompt } from "./prompt"
- import { fn } from "@/util/fn"
- import { Command } from "../command"
- import { Snapshot } from "@/snapshot"
- import type { Provider } from "@/provider/provider"
- import { PermissionNext } from "@/permission/next"
- import { Global } from "@/global"
- import type { LanguageModelV2Usage } from "@ai-sdk/provider"
- import { iife } from "@/util/iife"
- export namespace Session {
- const log = Log.create({ service: "session" })
- const parentTitlePrefix = "New session - "
- const childTitlePrefix = "Child session - "
- function createDefaultTitle(isChild = false) {
- return (isChild ? childTitlePrefix : parentTitlePrefix) + new Date().toISOString()
- }
- export function isDefaultTitle(title: string) {
- return new RegExp(
- `^(${parentTitlePrefix}|${childTitlePrefix})\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$`,
- ).test(title)
- }
- function getForkedTitle(title: string): string {
- const match = title.match(/^(.+) \(fork #(\d+)\)$/)
- if (match) {
- const base = match[1]
- const num = parseInt(match[2], 10)
- return `${base} (fork #${num + 1})`
- }
- return `${title} (fork #1)`
- }
- export const Info = z
- .object({
- id: Identifier.schema("session"),
- slug: z.string(),
- projectID: z.string(),
- directory: z.string(),
- parentID: Identifier.schema("session").optional(),
- summary: z
- .object({
- additions: z.number(),
- deletions: z.number(),
- files: z.number(),
- diffs: Snapshot.FileDiff.array().optional(),
- })
- .optional(),
- share: z
- .object({
- url: z.string(),
- })
- .optional(),
- title: z.string(),
- version: z.string(),
- time: z.object({
- created: z.number(),
- updated: z.number(),
- compacting: z.number().optional(),
- archived: z.number().optional(),
- }),
- permission: PermissionNext.Ruleset.optional(),
- revert: z
- .object({
- messageID: z.string(),
- partID: z.string().optional(),
- snapshot: z.string().optional(),
- diff: z.string().optional(),
- })
- .optional(),
- })
- .meta({
- ref: "Session",
- })
- export type Info = z.output<typeof Info>
- export const ShareInfo = z
- .object({
- secret: z.string(),
- url: z.string(),
- })
- .meta({
- ref: "SessionShare",
- })
- export type ShareInfo = z.output<typeof ShareInfo>
- export const Event = {
- Created: BusEvent.define(
- "session.created",
- z.object({
- info: Info,
- }),
- ),
- Updated: BusEvent.define(
- "session.updated",
- z.object({
- info: Info,
- }),
- ),
- Deleted: BusEvent.define(
- "session.deleted",
- z.object({
- info: Info,
- }),
- ),
- Diff: BusEvent.define(
- "session.diff",
- z.object({
- sessionID: z.string(),
- diff: Snapshot.FileDiff.array(),
- }),
- ),
- Error: BusEvent.define(
- "session.error",
- z.object({
- sessionID: z.string().optional(),
- error: MessageV2.Assistant.shape.error,
- }),
- ),
- }
- export const create = fn(
- z
- .object({
- parentID: Identifier.schema("session").optional(),
- title: z.string().optional(),
- permission: Info.shape.permission,
- })
- .optional(),
- async (input) => {
- return createNext({
- parentID: input?.parentID,
- directory: Instance.directory,
- title: input?.title,
- permission: input?.permission,
- })
- },
- )
- export const fork = fn(
- z.object({
- sessionID: Identifier.schema("session"),
- messageID: Identifier.schema("message").optional(),
- }),
- async (input) => {
- const original = await get(input.sessionID)
- if (!original) throw new Error("session not found")
- const title = getForkedTitle(original.title)
- const session = await createNext({
- directory: Instance.directory,
- title,
- })
- const msgs = await messages({ sessionID: input.sessionID })
- const idMap = new Map<string, string>()
- for (const msg of msgs) {
- if (input.messageID && msg.info.id >= input.messageID) break
- const newID = Identifier.ascending("message")
- idMap.set(msg.info.id, newID)
- const parentID = msg.info.role === "assistant" && msg.info.parentID ? idMap.get(msg.info.parentID) : undefined
- const cloned = await updateMessage({
- ...msg.info,
- sessionID: session.id,
- id: newID,
- ...(parentID && { parentID }),
- })
- for (const part of msg.parts) {
- await updatePart({
- ...part,
- id: Identifier.ascending("part"),
- messageID: cloned.id,
- sessionID: session.id,
- })
- }
- }
- return session
- },
- )
- export const touch = fn(Identifier.schema("session"), async (sessionID) => {
- await update(sessionID, (draft) => {
- draft.time.updated = Date.now()
- })
- })
- export async function createNext(input: {
- id?: string
- title?: string
- parentID?: string
- directory: string
- permission?: PermissionNext.Ruleset
- }) {
- const result: Info = {
- id: Identifier.descending("session", input.id),
- slug: Slug.create(),
- version: Installation.VERSION,
- projectID: Instance.project.id,
- directory: input.directory,
- parentID: input.parentID,
- title: input.title ?? createDefaultTitle(!!input.parentID),
- permission: input.permission,
- time: {
- created: Date.now(),
- updated: Date.now(),
- },
- }
- log.info("created", result)
- await Storage.write(["session", Instance.project.id, result.id], result)
- Bus.publish(Event.Created, {
- info: result,
- })
- const cfg = await Config.get()
- if (!result.parentID && (Flag.OPENCODE_AUTO_SHARE || cfg.share === "auto"))
- share(result.id)
- .then((share) => {
- update(result.id, (draft) => {
- draft.share = share
- })
- })
- .catch(() => {
- // Silently ignore sharing errors during session creation
- })
- Bus.publish(Event.Updated, {
- info: result,
- })
- return result
- }
- export function plan(input: { slug: string; time: { created: number } }) {
- const base = Instance.project.vcs
- ? path.join(Instance.worktree, ".opencode", "plans")
- : path.join(Global.Path.data, "plans")
- return path.join(base, [input.time.created, input.slug].join("-") + ".md")
- }
- export const get = fn(Identifier.schema("session"), async (id) => {
- const read = await Storage.read<Info>(["session", Instance.project.id, id])
- return read as Info
- })
- export const getShare = fn(Identifier.schema("session"), async (id) => {
- return Storage.read<ShareInfo>(["share", id])
- })
- export const share = fn(Identifier.schema("session"), async (id) => {
- const cfg = await Config.get()
- if (cfg.share === "disabled") {
- throw new Error("Sharing is disabled in configuration")
- }
- const { ShareNext } = await import("@/share/share-next")
- const share = await ShareNext.create(id)
- await update(
- id,
- (draft) => {
- draft.share = {
- url: share.url,
- }
- },
- { touch: false },
- )
- return share
- })
- export const unshare = fn(Identifier.schema("session"), async (id) => {
- // Use ShareNext to remove the share (same as share function uses ShareNext to create)
- const { ShareNext } = await import("@/share/share-next")
- await ShareNext.remove(id)
- await update(
- id,
- (draft) => {
- draft.share = undefined
- },
- { touch: false },
- )
- })
- export async function update(id: string, editor: (session: Info) => void, options?: { touch?: boolean }) {
- const project = Instance.project
- const result = await Storage.update<Info>(["session", project.id, id], (draft) => {
- editor(draft)
- if (options?.touch !== false) {
- draft.time.updated = Date.now()
- }
- })
- Bus.publish(Event.Updated, {
- info: result,
- })
- return result
- }
- export const diff = fn(Identifier.schema("session"), async (sessionID) => {
- const diffs = await Storage.read<Snapshot.FileDiff[]>(["session_diff", sessionID])
- return diffs ?? []
- })
- export const messages = fn(
- z.object({
- sessionID: Identifier.schema("session"),
- limit: z.number().optional(),
- }),
- async (input) => {
- const result = [] as MessageV2.WithParts[]
- for await (const msg of MessageV2.stream(input.sessionID)) {
- if (input.limit && result.length >= input.limit) break
- result.push(msg)
- }
- result.reverse()
- return result
- },
- )
- export async function* list() {
- const project = Instance.project
- for (const item of await Storage.list(["session", project.id])) {
- const session = await Storage.read<Info>(item).catch(() => undefined)
- if (!session) continue
- yield session
- }
- }
- export const children = fn(Identifier.schema("session"), async (parentID) => {
- const project = Instance.project
- const result = [] as Session.Info[]
- for (const item of await Storage.list(["session", project.id])) {
- const session = await Storage.read<Info>(item).catch(() => undefined)
- if (!session) continue
- if (session.parentID !== parentID) continue
- result.push(session)
- }
- return result
- })
- export const remove = fn(Identifier.schema("session"), async (sessionID) => {
- const project = Instance.project
- try {
- const session = await get(sessionID)
- for (const child of await children(sessionID)) {
- await remove(child.id)
- }
- await unshare(sessionID).catch(() => {})
- for (const msg of await Storage.list(["message", sessionID])) {
- for (const part of await Storage.list(["part", msg.at(-1)!])) {
- await Storage.remove(part)
- }
- await Storage.remove(msg)
- }
- await Storage.remove(["session", project.id, sessionID])
- Bus.publish(Event.Deleted, {
- info: session,
- })
- } catch (e) {
- log.error(e)
- }
- })
- export const updateMessage = fn(MessageV2.Info, async (msg) => {
- await Storage.write(["message", msg.sessionID, msg.id], msg)
- Bus.publish(MessageV2.Event.Updated, {
- info: msg,
- })
- return msg
- })
- export const removeMessage = fn(
- z.object({
- sessionID: Identifier.schema("session"),
- messageID: Identifier.schema("message"),
- }),
- async (input) => {
- await Storage.remove(["message", input.sessionID, input.messageID])
- Bus.publish(MessageV2.Event.Removed, {
- sessionID: input.sessionID,
- messageID: input.messageID,
- })
- return input.messageID
- },
- )
- export const removePart = fn(
- z.object({
- sessionID: Identifier.schema("session"),
- messageID: Identifier.schema("message"),
- partID: Identifier.schema("part"),
- }),
- async (input) => {
- await Storage.remove(["part", input.messageID, input.partID])
- Bus.publish(MessageV2.Event.PartRemoved, {
- sessionID: input.sessionID,
- messageID: input.messageID,
- partID: input.partID,
- })
- return input.partID
- },
- )
- const UpdatePartInput = z.union([
- MessageV2.Part,
- z.object({
- part: MessageV2.TextPart,
- delta: z.string(),
- }),
- z.object({
- part: MessageV2.ReasoningPart,
- delta: z.string(),
- }),
- ])
- export const updatePart = fn(UpdatePartInput, async (input) => {
- const part = "delta" in input ? input.part : input
- const delta = "delta" in input ? input.delta : undefined
- await Storage.write(["part", part.messageID, part.id], part)
- Bus.publish(MessageV2.Event.PartUpdated, {
- part,
- delta,
- })
- return part
- })
- export const getUsage = fn(
- z.object({
- model: z.custom<Provider.Model>(),
- usage: z.custom<LanguageModelV2Usage>(),
- metadata: z.custom<ProviderMetadata>().optional(),
- }),
- (input) => {
- const safe = (value: number) => {
- if (!Number.isFinite(value)) return 0
- return value
- }
- const inputTokens = safe(input.usage.inputTokens ?? 0)
- const outputTokens = safe(input.usage.outputTokens ?? 0)
- const reasoningTokens = safe(input.usage.reasoningTokens ?? 0)
- const cacheReadInputTokens = safe(input.usage.cachedInputTokens ?? 0)
- const cacheWriteInputTokens = safe(
- (input.metadata?.["anthropic"]?.["cacheCreationInputTokens"] ??
- // @ts-expect-error
- input.metadata?.["bedrock"]?.["usage"]?.["cacheWriteInputTokens"] ??
- // @ts-expect-error
- input.metadata?.["venice"]?.["usage"]?.["cacheCreationInputTokens"] ??
- 0) as number,
- )
- // OpenRouter provides inputTokens as the total count of input tokens (including cached).
- // AFAIK other providers (OpenRouter/OpenAI/Gemini etc.) do it the same way e.g. vercel/ai#8794 (comment)
- // Anthropic does it differently though - inputTokens doesn't include cached tokens.
- // It looks like OpenCode's cost calculation assumes all providers return inputTokens the same way Anthropic does (I'm guessing getUsage logic was originally implemented with anthropic), so it's causing incorrect cost calculation for OpenRouter and others.
- const excludesCachedTokens = !!(input.metadata?.["anthropic"] || input.metadata?.["bedrock"])
- const adjustedInputTokens = safe(
- excludesCachedTokens ? inputTokens : inputTokens - cacheReadInputTokens - cacheWriteInputTokens,
- )
- const total = iife(() => {
- // Anthropic doesn't provide total_tokens, also ai sdk will vastly undercount if we
- // don't compute from components
- if (
- input.model.api.npm === "@ai-sdk/anthropic" ||
- input.model.api.npm === "@ai-sdk/amazon-bedrock" ||
- input.model.api.npm === "@ai-sdk/google-vertex/anthropic"
- ) {
- return adjustedInputTokens + outputTokens + cacheReadInputTokens + cacheWriteInputTokens
- }
- return input.usage.totalTokens
- })
- const tokens = {
- total,
- input: adjustedInputTokens,
- output: outputTokens,
- reasoning: reasoningTokens,
- cache: {
- write: cacheWriteInputTokens,
- read: cacheReadInputTokens,
- },
- }
- const costInfo =
- input.model.cost?.experimentalOver200K && tokens.input + tokens.cache.read > 200_000
- ? input.model.cost.experimentalOver200K
- : input.model.cost
- return {
- cost: safe(
- new Decimal(0)
- .add(new Decimal(tokens.input).mul(costInfo?.input ?? 0).div(1_000_000))
- .add(new Decimal(tokens.output).mul(costInfo?.output ?? 0).div(1_000_000))
- .add(new Decimal(tokens.cache.read).mul(costInfo?.cache?.read ?? 0).div(1_000_000))
- .add(new Decimal(tokens.cache.write).mul(costInfo?.cache?.write ?? 0).div(1_000_000))
- // TODO: update models.dev to have better pricing model, for now:
- // charge reasoning tokens at the same rate as output tokens
- .add(new Decimal(tokens.reasoning).mul(costInfo?.output ?? 0).div(1_000_000))
- .toNumber(),
- ),
- tokens,
- }
- },
- )
- export class BusyError extends Error {
- constructor(public readonly sessionID: string) {
- super(`Session ${sessionID} is busy`)
- }
- }
- export const initialize = fn(
- z.object({
- sessionID: Identifier.schema("session"),
- modelID: z.string(),
- providerID: z.string(),
- messageID: Identifier.schema("message"),
- }),
- async (input) => {
- await SessionPrompt.command({
- sessionID: input.sessionID,
- messageID: input.messageID,
- model: input.providerID + "/" + input.modelID,
- command: Command.Default.INIT,
- arguments: "",
- })
- },
- )
- }
|