APIpie AI integration (AI, Developer Tools). Imported from open-connector.
https://apipie.ai/v1/models
/models/details
/chat/completions
| Param | Type | Required | Description |
|---|---|---|---|
| model | string | required | The APIpie AI model identifier to use. |
| messages | array | required | The ordered conversation history sent to the model. |
| frequency_penalty | number | optional | The frequency penalty applied to repeated tokens. |
| logit_bias | object | optional | Any JSON object. |
| max_tokens | integer | optional | The maximum number of tokens to generate. |
| n | integer | optional | The number of chat completions to generate. |
| presence_penalty | number | optional | The presence penalty applied to newly introduced tokens. |
| response_format | object | optional | Response format configuration. |
| seed | integer | optional | A seed for deterministic sampling. |
| stop | string | optional | One or more sequences where generation should stop. |
| stream | boolean | optional | Whether to request a streaming response. This connector only supports false. |
| temperature | number | optional | The sampling temperature. |
| tool_choice | string | optional | Tool selection strategy for the request. |
| tools | array | optional | Tools available to the model. |
| top_p | number | optional | The nucleus sampling threshold. |
| user | string | optional | An end-user identifier for monitoring or abuse detection. |
/embeddings
| Param | Type | Required | Description |
|---|---|---|---|
| model | string | required | The APIpie AI embedding model identifier to use. |
| input | string | required | The text input to embed. |
| encoding_format | string | optional | The format of the returned embedding vectors. |
| dimensions | integer | optional | The number of dimensions in the output embedding vector. |
| user | string | optional | An end-user identifier for monitoring or abuse detection. |