- 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
23 lines
878 B
TypeScript
23 lines
878 B
TypeScript
import type { Tracer } from './tracer';
|
|
import type { TracerOptions } from './tracer_options';
|
|
/**
|
|
* A registry for creating named {@link Tracer}s.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
export interface TracerProvider {
|
|
/**
|
|
* Returns a Tracer, creating one if one with the given name and version is
|
|
* not already created.
|
|
*
|
|
* This function may return different Tracer types (e.g.
|
|
* {@link NoopTracerProvider} vs. a functional tracer).
|
|
*
|
|
* @param name The name of the tracer or instrumentation library.
|
|
* @param version The version of the tracer or instrumentation library.
|
|
* @param options The options of the tracer or instrumentation library.
|
|
* @returns Tracer A Tracer with the given name and version
|
|
*/
|
|
getTracer(name: string, version?: string, options?: TracerOptions): Tracer;
|
|
}
|
|
//# sourceMappingURL=tracer_provider.d.ts.map
|