@squidcloud/cli 1.0.425 → 1.0.426
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.
package/dist/index.js
CHANGED
|
@@ -11458,6 +11458,7 @@ exports.CONNECTOR_IDS = [
|
|
|
11458
11458
|
'confluence',
|
|
11459
11459
|
'cotomi',
|
|
11460
11460
|
'essentials',
|
|
11461
|
+
'github',
|
|
11461
11462
|
'google_calendar',
|
|
11462
11463
|
'google_drive',
|
|
11463
11464
|
'hubspot',
|
|
@@ -23485,6 +23486,7 @@ exports.INTEGRATION_TYPES = [
|
|
|
23485
23486
|
'firebase_auth',
|
|
23486
23487
|
'firestore',
|
|
23487
23488
|
'gcs',
|
|
23489
|
+
'github',
|
|
23488
23490
|
'google_calendar',
|
|
23489
23491
|
'google_docs',
|
|
23490
23492
|
'google_drive',
|
|
@@ -30623,7 +30625,7 @@ function exitWithError(...messages) {
|
|
|
30623
30625
|
/***/ ((module) => {
|
|
30624
30626
|
|
|
30625
30627
|
"use strict";
|
|
30626
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.
|
|
30628
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.426","description":"The Squid CLI","main":"dist/index.js","scripts":{"start":"node dist/index.js","start-ts":"ts-node -r tsconfig-paths/register src/index.ts","prebuild":"rimraf dist","build":"webpack --mode=production","build:dev":"webpack --mode=development","lint":"eslint","link":"npm run build && chmod 755 dist/index.js && npm link","watch":"webpack --watch","deploy":"npm run build && npm pack --silent | xargs -I {} mv {} package.tgz && npm install -g package.tgz && rm -rf package.tgz","publish:public":"npm run build && npm publish --access public"},"files":["dist/**/*"],"bin":{"squid":"dist/index.js"},"keywords":[],"author":"","license":"ISC","engines":{"node":">=18.0.0"},"dependencies":{"@squidcloud/local-backend":"^1.0.426","adm-zip":"^0.5.16","copy-webpack-plugin":"^12.0.2","decompress":"^4.2.1","nodemon":"^3.1.9","terser-webpack-plugin":"^5.3.10","ts-loader":"^9.5.1","ts-node":"^10.9.2","tsconfig-paths":"^4.2.0","tsconfig-paths-webpack-plugin":"^4.1.0","webpack":"^5.101.3","zip-webpack-plugin":"^4.0.1"},"devDependencies":{"@types/adm-zip":"^0.5.7","@types/decompress":"^4.2.7","@types/node":"^20.19.9","terminal-link":"^3.0.0"}}');
|
|
30627
30629
|
|
|
30628
30630
|
/***/ }),
|
|
30629
30631
|
|
|
@@ -942,48 +942,48 @@ const result = await squid.executeWebhook<Response>('github-events', {
|
|
|
942
942
|
|
|
943
943
|
### AI - Supported Models
|
|
944
944
|
|
|
945
|
-
Squid supports multiple AI providers and models
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
-
|
|
945
|
+
Squid supports multiple AI providers and models. The available models are defined as TypeScript constants in the SDK and can be imported from `@squidcloud/client`:
|
|
946
|
+
|
|
947
|
+
```typescript
|
|
948
|
+
import {
|
|
949
|
+
// Chat model constants (by provider)
|
|
950
|
+
OPENAI_CHAT_MODEL_NAMES,
|
|
951
|
+
ANTHROPIC_CHAT_MODEL_NAMES,
|
|
952
|
+
GEMINI_CHAT_MODEL_NAMES,
|
|
953
|
+
GROK_CHAT_MODEL_NAMES,
|
|
954
|
+
VENDOR_AI_CHAT_MODEL_NAMES, // All chat models combined
|
|
955
|
+
|
|
956
|
+
// Embedding model constants
|
|
957
|
+
AI_EMBEDDINGS_MODEL_NAMES,
|
|
958
|
+
OPENAI_EMBEDDINGS_MODEL_NAMES,
|
|
959
|
+
VOYAGE_EMBEDDING_MODEL_NAMES,
|
|
960
|
+
|
|
961
|
+
// Image generation model constants
|
|
962
|
+
AI_IMAGE_MODEL_NAMES,
|
|
963
|
+
OPENAI_IMAGE_MODEL_NAMES,
|
|
964
|
+
STABLE_DIFFUSION_MODEL_NAMES,
|
|
965
|
+
FLUX_MODEL_NAMES,
|
|
966
|
+
|
|
967
|
+
// Audio model constants
|
|
968
|
+
AI_AUDIO_TRANSCRIPTION_MODEL_NAMES,
|
|
969
|
+
OPENAI_AUDIO_CREATE_SPEECH_MODEL_NAMES,
|
|
970
|
+
|
|
971
|
+
// Type definitions
|
|
972
|
+
AiChatModelName,
|
|
973
|
+
AiEmbeddingsModelName,
|
|
974
|
+
AiImageModelName,
|
|
975
|
+
AiAudioTranscriptionModelName,
|
|
976
|
+
AiAudioCreateSpeechModelName,
|
|
977
|
+
} from '@squidcloud/client';
|
|
978
|
+
```
|
|
979
|
+
|
|
980
|
+
These constants are the source of truth for available models. Check your installed SDK version for the current list of supported models.
|
|
981
|
+
|
|
982
|
+
**Model Categories:**
|
|
983
|
+
- **Chat Models**: Used for AI Agents, AI Query, etc. (OpenAI, Anthropic, Gemini, Grok)
|
|
984
|
+
- **Embedding Models**: Used for Knowledge Bases (OpenAI, Voyage)
|
|
985
|
+
- **Image Generation Models**: Used for image creation (DALL-E, Stable Diffusion, Flux)
|
|
986
|
+
- **Audio Models**: Transcription (Whisper, GPT-4o) and Text-to-Speech (TTS-1, GPT-4o-mini-tts)
|
|
987
987
|
|
|
988
988
|
### AI - Agents
|
|
989
989
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.426",
|
|
4
4
|
"description": "The Squid CLI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"node": ">=18.0.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@squidcloud/local-backend": "^1.0.
|
|
31
|
+
"@squidcloud/local-backend": "^1.0.426",
|
|
32
32
|
"adm-zip": "^0.5.16",
|
|
33
33
|
"copy-webpack-plugin": "^12.0.2",
|
|
34
34
|
"decompress": "^4.2.1",
|