← Tools Reference

APIpie AI

APIpie AI integration (AI, Developer Tools). Imported from open-connector.

API key4 toolshttps://apipie.ai/v1
GET
apipie_ai_list_models
List the APIpie AI models available to the current API key.

/models

GET
apipie_ai_list_detailed_models
List detailed APIpie AI model metadata available to the current API key.

/models/details

POST
apipie_ai_create_chat_completion
Create a non-streaming APIpie AI OpenAI-compatible chat completion.

/chat/completions

16 parameters
ParamTypeRequiredDescription
modelstringrequiredThe APIpie AI model identifier to use.
messagesarrayrequiredThe ordered conversation history sent to the model.
frequency_penaltynumberoptionalThe frequency penalty applied to repeated tokens.
logit_biasobjectoptionalAny JSON object.
max_tokensintegeroptionalThe maximum number of tokens to generate.
nintegeroptionalThe number of chat completions to generate.
presence_penaltynumberoptionalThe presence penalty applied to newly introduced tokens.
response_formatobjectoptionalResponse format configuration.
seedintegeroptionalA seed for deterministic sampling.
stopstringoptionalOne or more sequences where generation should stop.
streambooleanoptionalWhether to request a streaming response. This connector only supports false.
temperaturenumberoptionalThe sampling temperature.
tool_choicestringoptionalTool selection strategy for the request.
toolsarrayoptionalTools available to the model.
top_pnumberoptionalThe nucleus sampling threshold.
userstringoptionalAn end-user identifier for monitoring or abuse detection.
POST
apipie_ai_create_embedding
Generate APIpie AI embeddings for one or more text inputs.

/embeddings

5 parameters
ParamTypeRequiredDescription
modelstringrequiredThe APIpie AI embedding model identifier to use.
inputstringrequiredThe text input to embed.
encoding_formatstringoptionalThe format of the returned embedding vectors.
dimensionsintegeroptionalThe number of dimensions in the output embedding vector.
userstringoptionalAn end-user identifier for monitoring or abuse detection.