- 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
21 lines
917 B
TypeScript
21 lines
917 B
TypeScript
import type { Attributes } from '@opentelemetry/api';
|
|
export interface Hash<ValueType, HashCodeType> {
|
|
(value: ValueType): HashCodeType;
|
|
}
|
|
export declare class HashMap<KeyType, ValueType, HashCodeType> {
|
|
private _valueMap;
|
|
private _keyMap;
|
|
private _hash;
|
|
constructor(hash: Hash<KeyType, HashCodeType>);
|
|
get(key: KeyType, hashCode?: HashCodeType): ValueType | undefined;
|
|
getOrDefault(key: KeyType, defaultFactory: () => ValueType): ValueType | undefined;
|
|
set(key: KeyType, value: ValueType, hashCode?: HashCodeType): void;
|
|
has(key: KeyType, hashCode?: HashCodeType): boolean;
|
|
keys(): IterableIterator<[KeyType, HashCodeType]>;
|
|
entries(): IterableIterator<[KeyType, ValueType, HashCodeType]>;
|
|
get size(): number;
|
|
}
|
|
export declare class AttributeHashMap<ValueType> extends HashMap<Attributes, ValueType, string> {
|
|
constructor();
|
|
}
|
|
//# sourceMappingURL=HashMap.d.ts.map
|