POST
/
ai
/
integrate
curl --request POST \
  --url https://api.sol.com/v1/ai/integrate \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "gpt-4",
  "messages": [
    {
      "role": "user",
      "content": "Draft an email welcoming Tara to the platform."
    }
  ],
  "tools": [
    "create_email_draft"
  ],
  "tool_choice": "auto"
}'
{
  "responseId": "response-45678",
  "tool_calls": [
    {
      "toolId": "tool-6789",
      "params": {
        "from_email": "noreply@sol.com",
        "to_email": "tara@sol.com"
      }
    }
  ],
  "status": "tools_selected"
}

Body

application/json
model
string

AI model to use (e.g., gpt-4)

Example:

"gpt-4"

messages
object[]

List of messages for the AI model

tools
string[]

Available tools for the AI to select from

tool_choice
string

How the AI should choose tools (e.g., auto)

Example:

"auto"

Response

200 - application/json
AI response with selected tool(s)
responseId
string
Example:

"response-45678"

tool_calls
object[]
status
string
Example:

"tools_selected"