A
arktype3w ago
SHAO

How to represent arktype's Type types?

export type ToolDefinition = typeof ToolDefinition.infer;
export const ToolDefinition = type({
'name': 'string',
'displayName?': 'string',
'description?': 'string',
// 'type': ???
});

export interface IQAgentTool extends ToolDefinition {
type: Type;
}

const EmptyTool: IQAgentTool = () => {
return undefined;
};

EmptyTool.type = type('string');
export type ToolDefinition = typeof ToolDefinition.infer;
export const ToolDefinition = type({
'name': 'string',
'displayName?': 'string',
'description?': 'string',
// 'type': ???
});

export interface IQAgentTool extends ToolDefinition {
type: Type;
}

const EmptyTool: IQAgentTool = () => {
return undefined;
};

EmptyTool.type = type('string');
4 Replies
TizzySaurus
TizzySaurus3w ago
What exactly are you trying to do here, and what is wrong? If you want the type for "any ArkType type instance", that would be type.Any (note the lowercase type)
SHAO
SHAOOP3w ago
I want the type of a field to be an arktype object So it can have .toJsonSchema()
TizzySaurus
TizzySaurus3w ago
It sounds like you want type.Any then Although technically not all types can be converted to json schema (e.g. types with custom morphs). But I'm not sure there is actually a type for "JSON Schema-able" atm, so type.Any is as close as it gets
SHAO
SHAOOP3w ago
thx❤️

Did you find this page helpful?