- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
36 lines
1.9 KiB
TypeScript
36 lines
1.9 KiB
TypeScript
import type { Accumulation, AccumulationRecord, Aggregator, LastValue } from './types';
|
|
import { AggregatorKind } from './types';
|
|
import type { HrTime } from '@opentelemetry/api';
|
|
import type { GaugeMetricData } from '../export/MetricData';
|
|
import type { Maybe } from '../utils';
|
|
import type { AggregationTemporality } from '../export/AggregationTemporality';
|
|
import type { InstrumentDescriptor } from '../InstrumentDescriptor';
|
|
export declare class LastValueAccumulation implements Accumulation {
|
|
startTime: HrTime;
|
|
private _current;
|
|
sampleTime: HrTime;
|
|
constructor(startTime: HrTime, current?: number, sampleTime?: HrTime);
|
|
record(value: number): void;
|
|
setStartTime(startTime: HrTime): void;
|
|
toPointValue(): LastValue;
|
|
}
|
|
/** Basic aggregator which calculates a LastValue from individual measurements. */
|
|
export declare class LastValueAggregator implements Aggregator<LastValueAccumulation> {
|
|
kind: AggregatorKind.LAST_VALUE;
|
|
createAccumulation(startTime: HrTime): LastValueAccumulation;
|
|
/**
|
|
* Returns the result of the merge of the given accumulations.
|
|
*
|
|
* Return the newly captured (delta) accumulation for LastValueAggregator.
|
|
*/
|
|
merge(previous: LastValueAccumulation, delta: LastValueAccumulation): LastValueAccumulation;
|
|
/**
|
|
* Returns a new DELTA aggregation by comparing two cumulative measurements.
|
|
*
|
|
* A delta aggregation is not meaningful to LastValueAggregator, just return
|
|
* the newly captured (delta) accumulation for LastValueAggregator.
|
|
*/
|
|
diff(previous: LastValueAccumulation, current: LastValueAccumulation): LastValueAccumulation;
|
|
toMetricData(descriptor: InstrumentDescriptor, aggregationTemporality: AggregationTemporality, accumulationByAttributes: AccumulationRecord<LastValueAccumulation>[], endTime: HrTime): Maybe<GaugeMetricData>;
|
|
}
|
|
//# sourceMappingURL=LastValue.d.ts.map
|