7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
export * as LLM from "./llm.js"
|
|
|
|
import { Schema } from "effect"
|
|
|
|
export const FinishReason = Schema.Literals(["stop", "length", "tool-calls", "content-filter", "error", "unknown"])
|
|
export type FinishReason = typeof FinishReason.Type
|