- 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
41 lines
1.5 KiB
JavaScript
41 lines
1.5 KiB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
import { APIResource } from "../core/resource.mjs";
|
|
import { Page } from "../core/pagination.mjs";
|
|
import { buildHeaders } from "../internal/headers.mjs";
|
|
import { path } from "../internal/utils/path.mjs";
|
|
export class Models extends APIResource {
|
|
/**
|
|
* Get a specific model.
|
|
*
|
|
* The Models API response can be used to determine information about a specific
|
|
* model or resolve a model alias to a model ID.
|
|
*/
|
|
retrieve(modelID, params = {}, options) {
|
|
const { betas } = params ?? {};
|
|
return this._client.get(path `/v1/models/${modelID}`, {
|
|
...options,
|
|
headers: buildHeaders([
|
|
{ ...(betas?.toString() != null ? { 'anthropic-beta': betas?.toString() } : undefined) },
|
|
options?.headers,
|
|
]),
|
|
});
|
|
}
|
|
/**
|
|
* List available models.
|
|
*
|
|
* The Models API response can be used to determine which models are available for
|
|
* use in the API. More recently released models are listed first.
|
|
*/
|
|
list(params = {}, options) {
|
|
const { betas, ...query } = params ?? {};
|
|
return this._client.getAPIList('/v1/models', (Page), {
|
|
query,
|
|
...options,
|
|
headers: buildHeaders([
|
|
{ ...(betas?.toString() != null ? { 'anthropic-beta': betas?.toString() } : undefined) },
|
|
options?.headers,
|
|
]),
|
|
});
|
|
}
|
|
}
|
|
//# sourceMappingURL=models.mjs.map
|