mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 09:29:38 +02:00
chore(ts): consolidate effect native closeout
This commit is contained in:
parent
cd6c9107d7
commit
fab718dce8
21 changed files with 199 additions and 3533 deletions
|
|
@ -75,12 +75,12 @@ export const Field = S.Struct({
|
|||
});
|
||||
export type Field = typeof Field.Type;
|
||||
|
||||
export const RowSchema = S.Struct({
|
||||
export const Row = S.Struct({
|
||||
name: S.String,
|
||||
description: S.optionalKey(S.String),
|
||||
fields: S.Array(Field).pipe(S.mutable),
|
||||
});
|
||||
export type RowSchema = typeof RowSchema.Type;
|
||||
export type Row = typeof Row.Type;
|
||||
|
||||
export const LlmResult = S.Struct({
|
||||
text: S.String,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue