mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
8 lines
311 B
TypeScript
8 lines
311 B
TypeScript
/** Branded identity schemas shared by the remaining API Proxy domains. */
|
|
|
|
import type { SessionId } from '@deepseek-ai/dsh-session/types'
|
|
import { z } from 'zod'
|
|
|
|
/** Non-empty Session identity after transport validation. */
|
|
export const sessionIdSchema = z.string().min(1) as unknown as z.ZodType<SessionId>
|