- 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
17 lines
564 B
TypeScript
17 lines
564 B
TypeScript
/// <reference types="node" />
|
|
import type * as http from 'http';
|
|
import type * as https from 'https';
|
|
import { OTLPExporterConfigBase } from './legacy-base-configuration';
|
|
/**
|
|
* Collector Exporter node base config
|
|
*/
|
|
export interface OTLPExporterNodeConfigBase extends OTLPExporterConfigBase {
|
|
keepAlive?: boolean;
|
|
compression?: CompressionAlgorithm;
|
|
httpAgentOptions?: http.AgentOptions | https.AgentOptions;
|
|
}
|
|
export declare enum CompressionAlgorithm {
|
|
NONE = "none",
|
|
GZIP = "gzip"
|
|
}
|
|
//# sourceMappingURL=legacy-node-configuration.d.ts.map
|