POSThttps://api.humanloop.com/v5/prompts/call
Query Parameters
Body Parameters
  • false
          • key
            value
          • key
            value
          • key
            value
View in API Reference
Request
$curl -X POST https://api.humanloop.com/v5/prompts/call \
> -H "X-API-KEY: " \
> -H "Content-Type: application/json" \
> -d '{
> "stream": false,
> "path": "persona",
> "messages": [
> {
> "role": "user",
> "content": "latest apple"
> }
> ],
> "prompt": {
> "model": "gpt-4",
> "template": [
> {
> "role": "system",
> "content": "You are stockbot. Return latest prices."
> }
> ],
> "tools": [
> {
> "name": "get_stock_price",
> "description": "Get current stock price",
> "parameters": {
> "type": "object",
> "properties": {
> "ticker_symbol": {
> "type": "string",
> "name": "Ticker Symbol",
> "description": "Ticker symbol of the stock"
> }
> },
> "required": []
> }
> }
> ]
> }
>}'
Response