Real-Time Stock Info
"Avem în stoc 5 bucăți, culoarea albastră. Prețul este 299 lei, cu livrare gratuită." Toate datele din ERP/WMS în conversație.
Capabilities
Stock Level
Quantity available in warehouse
Price Check
Current price with promotions
Variant Availability
Colors, sizes, models
Store Location
Which stores have item
Restock Date
When out-of-stock returns
Alternatives
Similar products in stock
Function Definition
{
"name": "check_inventory",
"description": "Check product availability and pricing. Use when customer asks about a product.",
"parameters": {
"type": "object",
"properties": {
"product_id": { "type": "string", "description": "Product SKU or ID" },
"product_name": { "type": "string", "description": "Product name for search" },
"variant": { "type": "string", "description": "Color, size, etc." },
"location": { "type": "string", "description": "Store or warehouse" }
}
}
}
// Returns
{
"available": true,
"quantity": 5,
"price": 299.00,
"currency": "RON",
"variants": [
{ "color": "blue", "qty": 3 },
{ "color": "black", "qty": 2 }
],
"delivery_estimate": "1-2 zile lucratoare",
"alternatives": ["PROD-456", "PROD-789"]
}