@inkeep/agents-cli 0.0.0-dev-20251217212812 → 0.0.0-dev-20251218053358

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -822,6 +822,7 @@ const OPENAI_MODELS = {
822
822
  };
823
823
  const GOOGLE_MODELS = {
824
824
  GEMINI_3_PRO_PREVIEW: "google/gemini-3-pro-preview",
825
+ GEMINI_3_FLASH_PREVIEW: "google/gemini-3-flash-preview",
825
826
  GEMINI_2_5_PRO: "google/gemini-2.5-pro",
826
827
  GEMINI_2_5_FLASH: "google/gemini-2.5-flash",
827
828
  GEMINI_2_5_FLASH_LITE: "google/gemini-2.5-flash-lite"
@@ -189955,7 +189956,7 @@ var ManagementApiClient = class ManagementApiClient extends BaseApiClient {
189955
189956
  async listAgents() {
189956
189957
  const tenantId = this.checkTenantId();
189957
189958
  const projectId = this.getProjectId();
189958
- const response = await this.authenticatedFetch(`${this.apiUrl}/tenants/${tenantId}/projects/${projectId}/agents`, { method: "GET" });
189959
+ const response = await this.authenticatedFetch(`${this.apiUrl}/tenants/${tenantId}/projects/${projectId}/agents?limit=100`, { method: "GET" });
189959
189960
  if (!response.ok) throw new Error(`Failed to list agents: ${response.statusText}. ${this.apiUrl}/tenants/${tenantId}/projects/${projectId}/agents`);
189960
189961
  return (await response.json()).data || [];
189961
189962
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.0.0-dev-20251217212812",
3
+ "version": "0.0.0-dev-20251218053358",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -55,8 +55,8 @@
55
55
  "tsx": "^4.20.5",
56
56
  "open": "^10.2.0",
57
57
  "yaml": "^2.7.0",
58
- "@inkeep/agents-core": "^0.0.0-dev-20251217212812",
59
- "@inkeep/agents-sdk": "^0.0.0-dev-20251217212812"
58
+ "@inkeep/agents-core": "^0.0.0-dev-20251218053358",
59
+ "@inkeep/agents-sdk": "^0.0.0-dev-20251218053358"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@types/degit": "^2.8.6",
@@ -69,7 +69,7 @@
69
69
  "vitest": "^3.2.4"
70
70
  },
71
71
  "peerDependencies": {
72
- "@inkeep/agents-manage-ui": "0.0.0-dev-20251217212812",
72
+ "@inkeep/agents-manage-ui": "0.0.0-dev-20251218053358",
73
73
  "zod": "^4.1.11"
74
74
  },
75
75
  "publishConfig": {