get_producer_info
Retrieve detailed information about French hemp producers including location, certifications, ratings, and products to verify traceability.
Instructions
Informations sur un producteur de chanvre francais : localisation, certifications, note, produits. Pour verifier la tracabilite.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Nom du producteur | |
| department | No | Departement (ex: Dordogne, Gironde, Ardeche) | |
| region | No | Region (ex: Nouvelle-Aquitaine, Occitanie) | |
| bio_only | No | Uniquement producteurs certifies bio | |
| limit | No | Nombre de resultats (defaut: 5) |
Implementation Reference
- src/lib/types.ts:24-40 (helper)ProducerResult TypeScript interface defining the shape of producer data returned from the database.
export interface ProducerResult { id: string; name: string; slug: string; description: string | null; department: string | null; region: string | null; is_bio: boolean | null; logo_url: string | null; website_url: string | null; google_rating: number | null; average_rating: number | null; founded_year: number | null; farm_area_ha: number | null; production_types: string[] | null; gallery_images: string[] | null; }