agentlang
Version:
The easiest way to build the most reliable AI agents - enterprise-grade teams of AI agents that collaborate with each other and humans
77 lines • 1.96 kB
TypeScript
declare const _default: {
keywords: string[];
operators: string[];
symbols: RegExp;
tokenizer: {
initial: ({
regex: RegExp;
action: {
cases: {
'@keywords': {
token: string;
};
'@default': {
token: string;
};
'@operators'?: undefined;
};
token?: undefined;
};
include?: undefined;
} | {
regex: RegExp;
action: {
token: string;
cases?: undefined;
};
include?: undefined;
} | {
include: string;
regex?: undefined;
action?: undefined;
} | {
regex: RegExp;
action: {
cases: {
'@operators': {
token: string;
};
'@default': {
token: string;
};
'@keywords'?: undefined;
};
token?: undefined;
};
include?: undefined;
})[];
whitespace: ({
regex: RegExp;
action: {
token: string;
next?: undefined;
};
} | {
regex: RegExp;
action: {
token: string;
next: string;
};
})[];
comment: ({
regex: RegExp;
action: {
token: string;
next?: undefined;
};
} | {
regex: RegExp;
action: {
token: string;
next: string;
};
})[];
};
};
export default _default;
//# sourceMappingURL=agentlang.monarch.d.ts.map