- 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
19 lines
711 B
TypeScript
19 lines
711 B
TypeScript
import type { Meter, MeterOptions } from './Meter';
|
|
/**
|
|
* A registry for creating named {@link Meter}s.
|
|
*
|
|
* @since 1.3.0
|
|
*/
|
|
export interface MeterProvider {
|
|
/**
|
|
* Returns a Meter, creating one if one with the given name, version, and
|
|
* schemaUrl pair is not already created.
|
|
*
|
|
* @param name The name of the meter or instrumentation library.
|
|
* @param version The version of the meter or instrumentation library.
|
|
* @param options The options of the meter or instrumentation library.
|
|
* @returns Meter A Meter with the given name and version
|
|
*/
|
|
getMeter(name: string, version?: string, options?: MeterOptions): Meter;
|
|
}
|
|
//# sourceMappingURL=MeterProvider.d.ts.map
|