doc_search_piler

Recherche plein texte dans l'archive email Piler.

Catégorie
Archive
Stabilité
Bêta
Version
v1
Auth
cf-access

Schéma d’entrée

{
  "type": "object",
  "properties": {
    "q": { "type": "string" },
    "from": { "type": "string", "format": "email" },
    "to": { "type": "string", "format": "email" },
    "since": { "type": "string", "format": "date" },
    "until": { "type": "string", "format": "date" },
    "limit": { "type": "integer", "minimum": 1, "maximum": 50, "default": 20 }
  },
  "required": ["q"]
}

Schéma de sortie

{
  "type": "object",
  "properties": {
    "hits": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "message_id": { "type": "string" },
          "subject": { "type": "string" },
          "from": { "type": "string" },
          "to": { "type": "array", "items": { "type": "string" } },
          "date": { "type": "string", "format": "date-time" },
          "snippet": { "type": "string" }
        }
      }
    }
  }
}

Exemple d’invocation

{
  "tool": "doc_search_piler",
  "arguments": { "q": "Acme Bistro pricing", "since": "2026-01-01", "limit": 10 }
}

Exemple de réponse

{
  "hits": [
    {
      "message_id": "<20260410.121200@acmebistro.fr>",
      "subject": "Re: prix vin rouge 2026",
      "from": "j.lefevre@acmebistro.fr",
      "to": ["rani@sodimo.eu"],
      "date": "2026-04-10T12:12:00Z",
      "snippet": "… confirmant votre offre sur le vin rouge à 18,50 € HT…"
    }
  ]
}

Piler est l’archive email long terme. Complémentaire à crm_search — le CRM est la vérité relationnelle, Piler est la trace de correspondance.