承接 sharpapi/laravel-tth-hospitality-product-categories 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sharpapi/laravel-tth-hospitality-product-categories

Composer 安装命令:

composer require sharpapi/laravel-tth-hospitality-product-categories

包简介

AI Hospitality Product Categorization for Laravel powered by SharpAPI.com

README 文档

README

Latest Version on Packagist Total Downloads

This package provides a Laravel integration for the SharpAPI Hospitality Product Categorization service. It allows you to automatically categorize hospitality products with relevance scores, which is perfect for organizing product catalogs, improving search functionality, and enhancing product discovery.

Installation

You can install the package via composer:

composer require sharpapi/laravel-tth-hospitality-product-categories

Configuration

Publish the config file with:

php artisan vendor:publish --tag="sharpapi-tth-hospitality-product-categories"

This is the contents of the published config file:

return [
    'api_key' => env('SHARP_API_KEY'),
    'base_url' => env('SHARP_API_BASE_URL', 'https://sharpapi.com/api/v1'),
    'api_job_status_polling_wait' => env('SHARP_API_JOB_STATUS_POLLING_WAIT', 180),
    'api_job_status_polling_interval' => env('SHARP_API_JOB_STATUS_POLLING_INTERVAL', 10),
    'api_job_status_use_polling_interval' => env('SHARP_API_JOB_STATUS_USE_POLLING_INTERVAL', false),
];

Make sure to set your SharpAPI key in your .env file:

SHARP_API_KEY=your-api-key

Usage

use SharpAPI\TthHospitalityProductCategories\TthHospitalityProductCategoriesService;

$service = new TthHospitalityProductCategoriesService();

// Categorize a hospitality product
$categories = $service->hospitalityProductCategories(
    'Luxury Ocean View Suite with Balcony',
    'Miami Beach', // optional city
    'United States', // optional country
    'English', // optional language
    5, // optional max quantity of categories
    'professional', // optional voice tone
    'Spacious suite with king bed, private balcony, ocean views, and complimentary breakfast' // optional context
);

// $categories will contain a JSON string with the categorization results

Parameters

  • productName (string): The name of the product to categorize
  • city (string|null): The city related to the product (optional)
  • country (string|null): The country related to the product (optional)
  • language (string|null): The language for the response (optional)
  • maxQuantity (int|null): Maximum number of categories to return (optional)
  • voiceTone (string|null): The tone of voice for the response (optional)
  • context (string|null): Additional context for better categorization (optional)

Response Format

The response is a JSON string containing categories with weight scores:

{
  "data": {
    "type": "api_job_result",
    "id": "afb7cc23-23a5-479c-92a9-be983792dabc",
    "attributes": {
      "status": "success",
      "type": "tth_hospitality_product_categories",
      "result": [
        {
          "name": "Adult Only Hotels",
          "weight": 10
        },
        {
          "name": "Luxury Hotels",
          "weight": 8.5
        },
        {
          "name": "Boutique Hotels",
          "weight": 7.5
        },
        {
          "name": "Romantic Getaways",
          "weight": 7
        },
        {
          "name": "City Hotels",
          "weight": 6.5
        },
        {
          "name": "Couples Retreats",
          "weight": 6
        }
      ]
    }
  }
}

The weight score is a value between 1.0 and 10.0, where 10.0 represents 100% relevance.

Features

  • Automatically categorizes hospitality products
  • Provides relevance scores for each category
  • Supports location-specific categorization with city and country parameters
  • Works with multiple languages
  • Allows for additional context to improve categorization accuracy
  • Helps organize product catalogs and improve search functionality

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 7
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-09