{"id":"82fff4cb-8895-4a03-825f-161f387ea050","shortId":"MJVjag","kind":"skill","title":"arize-ai-provider-integration","tagline":"INVOKE THIS SKILL when creating, reading, updating, or deleting Arize AI integrations. Covers listing integrations, creating integrations for any supported LLM provider (OpenAI, Anthropic, Azure OpenAI, AWS Bedrock, Vertex AI, Gemini, NVIDIA NIM, custom), updating credentials or ","description":"# Arize AI Integration Skill\n\n> **`SPACE`** — Most `--space` flags and the `ARIZE_SPACE` env var accept a space **name** (e.g., `my-workspace`) or a base64 space **ID** (e.g., `U3BhY2U6...`). Find yours with `ax spaces list`.\n> **Note:** `ai-integrations create` does **not** accept `--space` — AI integrations are account-scoped. Use `--space` only with `list`, `get`, `update`, and `delete`.\n\n## Concepts\n\n- **AI Integration** = stored LLM provider credentials registered in Arize; used by evaluators to call a judge model and by other Arize features that need to invoke an LLM on your behalf\n- **Provider** = the LLM service backing the integration (e.g., `openAI`, `anthropic`, `awsBedrock`)\n- **Integration ID** = a base64-encoded global identifier for an integration (e.g., `TGxtSW50ZWdyYXRpb246MTI6YUJjRA==`); required for evaluator creation and other downstream operations\n- **Scoping** = visibility rules controlling which spaces or users can use an integration\n- **Auth type** = how Arize authenticates with the provider: `default` (provider API key), `proxy_with_headers` (proxy via custom headers), or `bearer_token` (bearer token auth)\n\n## Prerequisites\n\nProceed directly with the task — run the `ax` command you need. Do NOT check versions, env vars, or profiles upfront.\n\nIf an `ax` command fails, troubleshoot based on the error:\n- `command not found` or version error → see references/ax-setup.md\n- `401 Unauthorized` / missing API key → run `ax profiles show` to inspect the current profile. If the profile is missing or the API key is wrong, follow references/ax-profiles.md to create/update it. If the user doesn't have their key, direct them to https://app.arize.com/admin > API Keys\n- Space unknown → run `ax spaces list` to pick by name, or ask the user\n- LLM provider call fails (missing OPENAI_API_KEY / ANTHROPIC_API_KEY) → run `ax ai-integrations list --space SPACE` to check for platform-managed credentials. If none exist, ask the user to provide the key or create an integration via the **arize-ai-provider-integration** skill\n- **Security:** Never read `.env` files or search the filesystem for credentials. Use `ax profiles` for Arize credentials and `ax ai-integrations` for LLM provider keys. If credentials are not available through these channels, ask the user.\n\n---\n\n## List AI Integrations\n\nList all integrations accessible in a space:\n\n```bash\nax ai-integrations list --space SPACE\n```\n\nFilter by name (case-insensitive substring match):\n\n```bash\nax ai-integrations list --space SPACE --name \"openai\"\n```\n\nPaginate large result sets:\n\n```bash\n# Get first page\nax ai-integrations list --space SPACE --limit 20 -o json\n\n# Get next page using cursor from previous response\nax ai-integrations list --space SPACE --limit 20 --cursor CURSOR_TOKEN -o json\n```\n\n**Key flags:**\n\n| Flag | Description |\n|------|-------------|\n| `--space` | Space name or ID to filter integrations |\n| `--name` | Case-insensitive substring filter on integration name |\n| `--limit` | Max results (1–100, default 15) |\n| `--cursor` | Pagination token from a previous response |\n| `-o, --output` | Output format: `table` (default) or `json` |\n\n**Response fields:**\n\n| Field | Description |\n|-------|-------------|\n| `id` | Base64 integration ID — copy this for downstream commands |\n| `name` | Human-readable name |\n| `provider` | LLM provider enum (see Supported Providers below) |\n| `has_api_key` | `true` if credentials are stored |\n| `model_names` | Allowed model list, or `null` if all models are enabled |\n| `enable_default_models` | Whether default models for this provider are allowed |\n| `function_calling_enabled` | Whether tool/function calling is enabled |\n| `auth_type` | Authentication method: `default`, `proxy_with_headers`, or `bearer_token` |\n\n---\n\n## Get a Specific Integration\n\n```bash\nax ai-integrations get NAME_OR_ID\nax ai-integrations get NAME_OR_ID -o json\nax ai-integrations get NAME_OR_ID --space SPACE   # required when using name instead of ID\n```\n\nUse this to inspect an integration's full configuration or to confirm its ID after creation.\n\n---\n\n## Create an AI Integration\n\nBefore creating, always list integrations first — the user may already have a suitable one:\n\n```bash\nax ai-integrations list --space SPACE\n```\n\nIf no suitable integration exists, create one. The required flags depend on the provider.\n\n### OpenAI\n\n```bash\nax ai-integrations create \\\n  --name \"My OpenAI Integration\" \\\n  --provider openAI \\\n  --api-key $OPENAI_API_KEY\n```\n\n### Anthropic\n\n```bash\nax ai-integrations create \\\n  --name \"My Anthropic Integration\" \\\n  --provider anthropic \\\n  --api-key $ANTHROPIC_API_KEY\n```\n\n### Azure OpenAI\n\n```bash\nax ai-integrations create \\\n  --name \"My Azure OpenAI Integration\" \\\n  --provider azureOpenAI \\\n  --api-key $AZURE_OPENAI_API_KEY \\\n  --base-url \"https://my-resource.openai.azure.com/\"\n```\n\n### AWS Bedrock\n\nAWS Bedrock uses IAM role-based auth. Provide the ARN of the role Arize should assume via `--provider-metadata`:\n\n```bash\nax ai-integrations create \\\n  --name \"My Bedrock Integration\" \\\n  --provider awsBedrock \\\n  --provider-metadata '{\"role_arn\": \"arn:aws:iam::123456789012:role/ArizeBedrockRole\"}'\n```\n\n### Vertex AI\n\nVertex AI uses GCP service account credentials. Provide the GCP project and region via `--provider-metadata`:\n\n```bash\nax ai-integrations create \\\n  --name \"My Vertex AI Integration\" \\\n  --provider vertexAI \\\n  --provider-metadata '{\"project_id\": \"my-gcp-project\", \"location\": \"us-central1\"}'\n```\n\n### Gemini\n\n```bash\nax ai-integrations create \\\n  --name \"My Gemini Integration\" \\\n  --provider gemini \\\n  --api-key $GEMINI_API_KEY\n```\n\n### NVIDIA NIM\n\n```bash\nax ai-integrations create \\\n  --name \"My NVIDIA NIM Integration\" \\\n  --provider nvidiaNim \\\n  --api-key $NVIDIA_API_KEY \\\n  --base-url \"https://integrate.api.nvidia.com/v1\"\n```\n\n### Custom (OpenAI-compatible endpoint)\n\n```bash\nax ai-integrations create \\\n  --name \"My Custom Integration\" \\\n  --provider custom \\\n  --base-url \"https://my-llm-proxy.example.com/v1\" \\\n  --api-key $CUSTOM_LLM_API_KEY\n```\n\n### Supported Providers\n\n| Provider | Required extra flags |\n|----------|---------------------|\n| `openAI` | `--api-key <key>` |\n| `anthropic` | `--api-key <key>` |\n| `azureOpenAI` | `--api-key <key>`, `--base-url <azure-endpoint>` |\n| `awsBedrock` | `--provider-metadata '{\"role_arn\": \"<arn>\"}'` |\n| `vertexAI` | `--provider-metadata '{\"project_id\": \"<gcp-project>\", \"location\": \"<region>\"}'` |\n| `gemini` | `--api-key <key>` |\n| `nvidiaNim` | `--api-key <key>`, `--base-url <nim-endpoint>` |\n| `custom` | `--base-url <endpoint>` |\n\n### Optional flags for any provider\n\n| Flag | Description |\n|------|-------------|\n| `--model-name` | Allowed model name (repeat for multiple, e.g. `--model-name gpt-4o --model-name gpt-4o-mini`); omit to allow all models |\n| `--enable-default-models` | Enable the provider's default model list |\n| `--function-calling-enabled` | Enable tool/function calling support |\n| `--auth-type` | Authentication type: `default`, `proxy_with_headers`, or `bearer_token` |\n| `--headers` | Custom headers as JSON object or file path (for proxy auth) |\n| `--provider-metadata` | Provider-specific metadata as JSON object or file path |\n\n### After creation\n\nCapture the returned integration ID (e.g., `TGxtSW50ZWdyYXRpb246MTI6YUJjRA==`) — it is needed for evaluator creation and other downstream commands. If you missed it, retrieve it:\n\n```bash\nax ai-integrations list --space SPACE -o json\n# or by name/ID directly:\nax ai-integrations get NAME_OR_ID\n```\n\n---\n\n## Update an AI Integration\n\n`update` is a partial update — only the flags you provide are changed. Omitted fields stay as-is.\n\n```bash\n# Rename\nax ai-integrations update NAME_OR_ID --name \"New Name\"\n\n# Rotate the API key\nax ai-integrations update NAME_OR_ID --api-key $OPENAI_API_KEY\n\n# Change the model list (replaces all existing model names)\nax ai-integrations update NAME_OR_ID --model-name gpt-4o --model-name gpt-4o-mini\n\n# Update base URL (for Azure, custom, or NIM)\nax ai-integrations update NAME_OR_ID --base-url \"https://new-endpoint.example.com/v1\"\n```\n\nAdd `--space SPACE` when using a name instead of ID. Any flag accepted by `create` can be passed to `update`.\n\n---\n\n## Delete an AI Integration\n\n**Warning:** Deletion is permanent. Evaluators that reference this integration will no longer be able to run.\n\n```bash\nax ai-integrations delete NAME_OR_ID --force\nax ai-integrations delete NAME_OR_ID --space SPACE --force   # required when using name instead of ID\n```\n\nOmit `--force` to get a confirmation prompt instead of deleting immediately.\n\n---\n\n## Troubleshooting\n\n| Problem | Solution |\n|---------|----------|\n| `ax: command not found` | See references/ax-setup.md |\n| `401 Unauthorized` | API key may not have access to this space. Verify key and space ID at https://app.arize.com/admin > API Keys |\n| `No profile found` | Run `ax profiles show --expand`; set `ARIZE_API_KEY` env var or write `~/.arize/config.toml` |\n| `Integration not found` | Verify with `ax ai-integrations list --space SPACE` |\n| `has_api_key: false` after create | Credentials were not saved — re-run `update` with the correct `--api-key` or `--provider-metadata` |\n| Evaluator runs fail with LLM errors | Check integration credentials with `ax ai-integrations get INT_ID`; rotate the API key if needed |\n| `provider` mismatch | Cannot change provider after creation — delete and recreate with the correct provider |\n\n---\n\n## Related Skills\n\n- **arize-evaluator**: Create LLM-as-judge evaluators that use an AI integration → use `arize-evaluator`\n- **arize-experiment**: Run experiments that use evaluators backed by an AI integration → use `arize-experiment`\n\n---\n\n## Save Credentials for Future Use\n\nSee references/ax-profiles.md § Save Credentials for Future Use.","tags":["arize","provider","integration","skills","arize-ai","agent-skills","ai-agents","ai-observability","claude-code","codex","cursor","datasets"],"capabilities":["skill","source-arize-ai","skill-arize-ai-provider-integration","topic-agent-skills","topic-ai-agents","topic-ai-observability","topic-arize","topic-claude-code","topic-codex","topic-cursor","topic-datasets","topic-experiments","topic-llmops","topic-tracing"],"categories":["arize-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/Arize-ai/arize-skills/arize-ai-provider-integration","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add Arize-ai/arize-skills","source_repo":"https://github.com/Arize-ai/arize-skills","install_from":"skills.sh"}},"qualityScore":"0.456","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 13 github stars · SKILL.md body (9,794 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-24T01:02:56.033Z","embedding":null,"createdAt":"2026-04-23T13:03:46.865Z","updatedAt":"2026-04-24T01:02:56.033Z","lastSeenAt":"2026-04-24T01:02:56.033Z","tsv":"'/.arize/config.toml':1327 '/admin':285,1308 '/v1':878,901,1200 '1':488 '100':489 '123456789012':786 '15':491 '20':439,458 '401':242,1289 '4o':980,986,1171,1177 'abl':1238 'accept':57,85,1213 'access':393,1296 'account':91,795 'account-scop':90 'add':1201 'ai':3,16,35,44,80,87,103,316,346,370,388,400,416,433,452,590,598,608,641,660,683,702,722,769,789,791,810,816,837,857,887,1077,1090,1098,1122,1137,1160,1189,1223,1244,1253,1335,1376,1415,1432 'ai-integr':79,315,369,399,415,432,451,589,597,607,659,682,701,721,768,809,836,856,886,1076,1089,1121,1136,1159,1188,1243,1252,1334,1375 'allow':543,563,968,990 'alreadi':652 'alway':645 'anthrop':29,143,310,698,707,710,714,919 'api':188,245,263,286,308,311,534,693,696,712,715,733,737,847,850,868,871,903,907,917,921,925,945,949,1133,1144,1147,1291,1309,1321,1341,1358,1383 'api-key':692,711,732,846,867,902,916,920,924,944,948,1143,1357 'app.arize.com':284,1307 'app.arize.com/admin':283,1306 'ariz':2,15,43,53,111,123,181,345,365,759,1320,1404,1419,1422,1436 'arize-ai-provider-integr':1,344 'arize-evalu':1403,1418 'arize-experi':1421,1435 'arn':755,782,783,935 'as-i':1115 'ask':299,331,384 'assum':761 'auth':178,202,572,752,1013,1035 'auth-typ':1012 'authent':182,574,1015 'avail':380 'aw':32,743,745,784 'awsbedrock':144,777,930 'ax':75,211,226,248,291,314,362,368,398,414,431,450,588,596,606,658,681,700,720,767,808,835,855,885,1075,1088,1120,1135,1158,1187,1242,1251,1283,1315,1333,1374 'azur':30,717,727,735,1183 'azureopenai':731,923 'back':138,1429 'base':230,740,751,874,897,928,952,956,1180,1196 'base-url':739,873,896,927,951,955,1195 'base64':67,149,512 'base64-encoded':148 'bash':397,413,427,587,657,680,699,719,766,807,834,854,884,1074,1118,1241 'bearer':198,200,581,1022 'bedrock':33,744,746,774 'behalf':133 'call':116,304,565,569,1006,1010 'cannot':1389 'captur':1051 'case':409,478 'case-insensit':408,477 'central1':832 'chang':1111,1149,1390 'channel':383 'check':217,322,1370 'command':212,227,234,519,1067,1284 'compat':882 'concept':102 'configur':631 'confirm':634,1274 'control':169 'copi':515 'correct':1356,1399 'cover':18 'creat':10,21,82,339,639,644,670,685,704,724,771,812,839,859,889,1215,1345,1406 'create/update':270 'creation':161,638,1050,1063,1393 'credenti':41,108,327,360,366,377,538,796,1346,1372,1439,1446 'current':254 'cursor':446,459,460,492 'custom':39,195,879,892,895,905,954,1025,1184 'default':186,490,504,554,557,576,995,1001,1017 'delet':14,101,1221,1226,1246,1255,1278,1394 'depend':675 'descript':467,510,964 'direct':205,280,1087 'doesn':275 'downstream':164,518,1066 'e.g':61,70,141,156,974,1056 'enabl':552,553,566,571,994,997,1007,1008 'enable-default-model':993 'encod':150 'endpoint':883 'enum':528 'env':55,219,353,1323 'error':233,239,1369 'evalu':114,160,1062,1229,1364,1405,1411,1420,1428 'exist':330,669,1155 'expand':1318 'experi':1423,1425,1437 'extra':913 'fail':228,305,1366 'fals':1343 'featur':124 'field':508,509,1113 'file':354,1031,1047 'filesystem':358 'filter':405,474,481 'find':72 'first':429,648 'flag':50,465,466,674,914,959,963,1107,1212 'follow':267 'forc':1250,1261,1270 'format':502 'found':236,1286,1313,1330 'full':630 'function':564,1005 'function-calling-en':1004 'futur':1441,1448 'gcp':793,799,827 'gemini':36,833,842,845,849,943 'get':98,428,442,583,592,600,610,1092,1272,1378 'global':151 'gpt':979,985,1170,1176 'gpt-4o':978,1169 'gpt-4o-mini':984,1175 'header':192,196,579,1020,1024,1026 'human':522 'human-read':521 'iam':748,785 'id':69,146,472,511,514,595,603,613,622,636,824,941,1055,1095,1127,1142,1165,1194,1210,1249,1258,1268,1304,1380 'identifi':152 'immedi':1279 'insensit':410,479 'inspect':252,626 'instead':620,1208,1266,1276 'int':1379 'integr':5,17,20,22,45,81,88,104,140,145,155,177,317,341,348,371,389,392,401,417,434,453,475,483,513,586,591,599,609,628,642,647,661,668,684,689,703,708,723,729,770,775,811,817,838,843,858,864,888,893,1054,1078,1091,1099,1123,1138,1161,1190,1224,1233,1245,1254,1328,1336,1371,1377,1416,1433 'integrate.api.nvidia.com':877 'integrate.api.nvidia.com/v1':876 'invok':6,128 'json':441,463,506,605,1028,1044,1083 'judg':118,1410 'key':189,246,264,279,287,309,312,337,375,464,535,694,697,713,716,734,738,848,851,869,872,904,908,918,922,926,946,950,1134,1145,1148,1292,1301,1310,1322,1342,1359,1384 'larg':424 'limit':438,457,485 'list':19,77,97,293,318,387,390,402,418,435,454,545,646,662,1003,1079,1152,1337 'llm':26,106,130,136,302,373,526,906,1368,1408 'llm-as-judg':1407 'locat':829,942 'longer':1236 'manag':326 'match':412 'max':486 'may':651,1293 'metadata':765,780,806,822,933,939,1038,1042,1363 'method':575 'mini':987,1178 'mismatch':1388 'miss':244,260,306,1070 'model':119,541,544,550,555,558,966,969,976,982,992,996,1002,1151,1156,1167,1173 'model-nam':965,975,981,1166,1172 'multipl':973 'my-gcp-project':825 'my-llm-proxy.example.com':900 'my-llm-proxy.example.com/v1':899 'my-resource.openai.azure.com':742 'my-workspac':62 'name':60,297,407,421,470,476,484,520,524,542,593,601,611,619,686,705,725,772,813,840,860,890,967,970,977,983,1093,1125,1128,1130,1140,1157,1163,1168,1174,1192,1207,1247,1256,1265 'name/id':1086 'need':126,214,1060,1386 'never':351 'new':1129 'new-endpoint.example.com':1199 'new-endpoint.example.com/v1':1198 'next':443 'nim':38,853,863,1186 'none':329 'note':78 'null':547 'nvidia':37,852,862,870 'nvidianim':866,947 'o':440,462,499,604,1082 'object':1029,1045 'omit':988,1112,1269 'one':656,671 'openai':28,31,142,307,422,679,688,691,695,718,728,736,881,915,1146 'openai-compat':880 'oper':165 'option':958 'output':500,501 'page':430,444 'pagin':423,493 'partial':1103 'pass':1218 'path':1032,1048 'perman':1228 'pick':295 'platform':325 'platform-manag':324 'prerequisit':203 'previous':448,497 'problem':1281 'proceed':204 'profil':222,249,255,258,363,1312,1316 'project':800,823,828,940 'prompt':1275 'provid':4,27,107,134,185,187,303,335,347,374,525,527,531,561,678,690,709,730,753,764,776,779,797,805,818,821,844,865,894,910,911,932,938,962,999,1037,1040,1109,1362,1387,1391,1400 'provider-metadata':763,778,804,820,931,937,1036,1361 'provider-specif':1039 'proxi':190,193,577,1018,1034 're':1351 're-run':1350 'read':11,352 'readabl':523 'recreat':1396 'refer':1231 'references/ax-profiles.md':268,1444 'references/ax-setup.md':241,1288 'region':802 'regist':109 'relat':1401 'renam':1119 'repeat':971 'replac':1153 'requir':158,616,673,912,1262 'respons':449,498,507 'result':425,487 'retriev':1072 'return':1053 'role':750,758,781,934 'role-bas':749 'role/arizebedrockrole':787 'rotat':1131,1381 'rule':168 'run':209,247,290,313,1240,1314,1352,1365,1424 'save':1349,1438,1445 'scope':92,166 'search':356 'secur':350 'see':240,529,1287,1443 'servic':137,794 'set':426,1319 'show':250,1317 'skill':8,46,349,1402 'skill-arize-ai-provider-integration' 'solut':1282 'source-arize-ai' 'space':47,49,54,59,68,76,86,94,171,288,292,319,320,396,403,404,419,420,436,437,455,456,468,469,614,615,663,664,1080,1081,1202,1203,1259,1260,1299,1303,1338,1339 'specif':585,1041 'stay':1114 'store':105,540 'substr':411,480 'suitabl':655,667 'support':25,530,909,1011 'tabl':503 'task':208 'tgxtsw50zwdyyxrpb246mti6yujjra':157,1057 'token':199,201,461,494,582,1023 'tool/function':568,1009 'topic-agent-skills' 'topic-ai-agents' 'topic-ai-observability' 'topic-arize' 'topic-claude-code' 'topic-codex' 'topic-cursor' 'topic-datasets' 'topic-experiments' 'topic-llmops' 'topic-tracing' 'troubleshoot':229,1280 'true':536 'type':179,573,1014,1016 'u3bhy2u6':71 'unauthor':243,1290 'unknown':289 'updat':12,40,99,1096,1100,1104,1124,1139,1162,1179,1191,1220,1353 'upfront':223 'url':741,875,898,929,953,957,1181,1197 'us':831 'us-central1':830 'use':93,112,175,361,445,618,623,747,792,1205,1264,1413,1417,1427,1434,1442,1449 'user':173,274,301,333,386,650 'var':56,220,1324 'verifi':1300,1331 'version':218,238 'vertex':34,788,790,815 'vertexai':819,936 'via':194,342,762,803 'visibl':167 'warn':1225 'whether':556,567 'workspac':64 'write':1326 'wrong':266","prices":[{"id":"ab7338bf-4a11-46cf-85e5-37b6ceca1778","listingId":"82fff4cb-8895-4a03-825f-161f387ea050","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"Arize-ai","category":"arize-skills","install_from":"skills.sh"},"createdAt":"2026-04-23T13:03:46.865Z"}],"sources":[{"listingId":"82fff4cb-8895-4a03-825f-161f387ea050","source":"github","sourceId":"Arize-ai/arize-skills/arize-ai-provider-integration","sourceUrl":"https://github.com/Arize-ai/arize-skills/tree/main/skills/arize-ai-provider-integration","isPrimary":false,"firstSeenAt":"2026-04-23T13:03:46.865Z","lastSeenAt":"2026-04-24T01:02:56.033Z"}],"details":{"listingId":"82fff4cb-8895-4a03-825f-161f387ea050","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"Arize-ai","slug":"arize-ai-provider-integration","github":{"repo":"Arize-ai/arize-skills","stars":13,"topics":["agent-skills","ai-agents","ai-observability","arize","claude-code","codex","cursor","datasets","experiments","llmops","tracing"],"license":"mit","html_url":"https://github.com/Arize-ai/arize-skills","pushed_at":"2026-04-24T00:52:08Z","description":"Agent skills for Arize — datasets, experiments, and traces via the ax CLI","skill_md_sha":"dbf2fc16956022d73b3b8be809f94cf1eae399c1","skill_md_path":"skills/arize-ai-provider-integration/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/Arize-ai/arize-skills/tree/main/skills/arize-ai-provider-integration"},"layout":"multi","source":"github","category":"arize-skills","frontmatter":{"name":"arize-ai-provider-integration","description":"INVOKE THIS SKILL when creating, reading, updating, or deleting Arize AI integrations. Covers listing integrations, creating integrations for any supported LLM provider (OpenAI, Anthropic, Azure OpenAI, AWS Bedrock, Vertex AI, Gemini, NVIDIA NIM, custom), updating credentials or metadata, and deleting integrations using the ax CLI."},"skills_sh_url":"https://skills.sh/Arize-ai/arize-skills/arize-ai-provider-integration"},"updatedAt":"2026-04-24T01:02:56.033Z"}}