| Name |
Type |
Description |
Notes |
| key |
string |
|
[default to undefined] |
| _access |
AiConfigsAccess |
|
[optional] [default to undefined] |
| _links |
ParentAndSelfLinks |
|
[optional] [default to undefined] |
| _maintainer |
AIConfigMaintainer |
|
[optional] [default to undefined] |
| description |
string |
|
[optional] [default to undefined] |
| schema |
object |
JSON Schema defining the tool's parameters for LLM consumption |
[default to undefined] |
| customParameters |
object |
Custom metadata and configuration for application-level use (not sent to LLM) |
[optional] [default to undefined] |
| version |
number |
|
[default to undefined] |
| createdAt |
number |
|
[default to undefined] |
import { AITool } from 'launchdarkly-api-typescript';
const instance: AITool = {
key,
_access,
_links,
_maintainer,
description,
schema,
customParameters,
version,
createdAt,
};
[Back to Model list] [Back to API list] [Back to README]