当前位置: 首页 > news >正文

编写洗发水,沐浴露配方配比程序。按不同发质肤质计算原料比例,生成简易配方。

洗发水与沐浴露智能配方配比系统

一、实际应用场景描述

场景:小王是一名程序员,由于长期熬夜加班,头发变得油腻扁塌,皮肤也开始干燥起皮。他走进超市想买一套适合自己的洗护产品,却被货架上琳琅满目的选择搞得头晕眼花:控油蓬松型、滋润修护型、敏感舒缓型...每种产品的成分表都密密麻麻写着十几种化学成分,他根本不知道哪款真正适合自己。最后只能随便买了一瓶促销装的"二合一"洗发水,结果用了两周,头皮更痒了,皮肤也更干了。

目标用户:

- 个人消费者:希望根据自身体质定制洗护产品

- 小型美容院/理发店:需要为客户调配个性化洗护方案

- 化妆品DIY爱好者:学习科学配方原理

- 敏感肌/特殊体质人群:避免不适合的成分组合

二、引入痛点

1. 产品标签信息过载:市售洗护产品成分表通常包含15-30种成分,普通消费者难以理解各成分的作用和相互关系。

2. "一刀切"配方问题:商业产品为了适应大众市场,往往采用中庸配方,无法满足个性化需求:

- 油性头皮用滋润型→越洗越油

- 干性皮肤用清洁力强型→更加干燥紧绷

3. 成分相互作用复杂:某些成分组合会产生拮抗效应(如阳离子调理剂和阴离子表面活性剂不相容),或协同增效(如温和的表面活性剂复配)。

4. 浓度配比科学性不足:消费者对有效成分浓度缺乏概念,不知道"温和"与"清洁力"如何通过配比实现平衡。

5. 过敏源难以规避:敏感人群需要避开特定防腐剂、香精或表面活性剂,但商业产品很少提供详细的过敏原信息。

三、核心逻辑讲解

1. 关键成分分类与作用机制

成分类别 代表成分 作用机理 适用人群

主表面活性剂 SLS, SLES, Cocamidopropyl Betaine, Decyl Glucoside 降低表面张力,乳化油脂污垢 油性选强清洁,干性选温和

辅表面活性剂 Cocamide MEA, Lauramide DEA 增泡稳泡,降低主表活刺激性 所有发质,增强温和性

调理剂 Polyquaternium-10, Guar Hydroxypropyltrimonium Chloride 吸附在毛发表面,减少静电 受损发质,增加顺滑度

保湿剂 Glycerin, Propanediol, Panthenol 维持角质层水分,防止TEWL 干性皮肤/头皮

pH调节剂 Citric Acid, Sodium Citrate, Lactic Acid 调节酸碱度至皮肤生理范围 敏感肌需弱酸性

防腐剂 Phenoxyethanol, Sodium Benzoate, Potassium Sorbate 抑制微生物生长 敏感肌需避开甲醛释放体

功能性添加剂 Salicylic Acid(去屑), Allantoin(舒缓), Vitamin E(抗氧化) 针对特定问题 按需添加

2. 核心计算公式

表面活性剂复配协同系数(SCSC):

SCSC = \sqrt{K_1 \times K_2} \times \frac{C_1 + C_2}{C_1 \times C_2} \times \cos(\theta)

其中 K_1, K_2 为各表活的临界胶束浓度(CMC), C_1, C_2 为实际浓度, \theta 为分子结构夹角(相似度因子)。

清洁力指数(CLI):

CLI = \sum_{i=1}^{n} w_i \times C_i \times \log(K_{ow,i})

其中 w_i 为表活权重, C_i 为浓度, K_{ow,i} 为辛醇-水分配系数(疏水性指标)。

温和性评分(Mildness Score, MS):

MS = 100 - \sum_{j=1}^{m} a_j \times C_j \times ToxicityFactor_j

其中 a_j 为成分系数, C_j 为浓度, ToxicityFactor_j 为毒性因子(基于OECD数据库)。

pH适配度(PHAD):

PHAD = e^{-|pH_{product} - pH_{skin}| \times 0.5} \times 100

头皮生理pH为4.5-5.5,皮肤为5.0-6.0。

3. 个性化配方逻辑

发质/肤质分类与配方策略:

类型 特征 主表活选择 调理剂策略 pH范围

油性头皮 皮脂分泌旺盛,易出油 SLES+Cocamidopropyl Betaine复配 低调理剂,增加水杨酸 5.5-6.5

干性头皮 皮脂不足,毛躁分叉 Decyl Glucoside+APG复配 高调理剂,添加保湿剂 4.5-5.5

敏感性 易红痒,屏障受损 氨基酸表活为主 无香精防腐,添加舒缓剂 4.5-5.0

受损发质 化学处理,弹性差 温和主表活+蛋白修复剂 高调理剂浓度 5.0-6.0

正常/混合 平衡型 传统SLES+温和辅表活 中等调理 5.0-6.0

原料添加顺序(相分离原理):

1. A相(水相):水、保湿剂、水溶性功效成分

2. B相(油相):脂溶性成分、乳化剂

3. C相(表活相):主/辅表面活性剂

4. D相(调节相):pH调节剂、电解质

5. E相(功能相):防腐剂、香精、活性物

4. 安全性与稳定性检查

配伍禁忌检查:

- 阳离子-阴离子表活不相容

- 强氧化剂与还原剂同存

- pH超出防腐剂有效范围

微生物挑战测试:

基于USP 51标准的简化模型:

SurvivalRate = e^{-N \times t \times D_{value}}

其中 N 为初始菌量, t 为时间, D_{value} 为杀菌效能系数。

四、代码模块化实现

项目结构

personal_care_formulator/

├── main.py # 主程序入口

├── config.py # 原料数据库与常量配置

├── calculator.py # 配方计算核心逻辑

├── formulator.py # 配方生成器

├── safety_checker.py # 安全性与稳定性检查

├── user_profile.py # 用户档案与偏好管理

├── output_generator.py # 报告与标签生成

└── README.md # 使用说明

1. config.py(原料数据库与常量配置)

"""

洗发水与沐浴露智能配方系统 - 配置文件

包含原料数据库、安全阈值、化学常数

"""

# ==================== 原料数据库 ====================

# 数据来源:INCI名称、CTFA成分数据库、ECHA化学品数据库

INGREDIENT_DATABASE = {

# ========== 主表面活性剂 ==========

'sls': {

'name': 'Sodium Lauryl Sulfate (SLS)',

'inci_name': 'Sodium Lauryl Sulfate',

'type': 'primary_surfactant',

'function': '强清洁,高泡沫',

'cmc': 8.2, # mM

'toxicity_factor': 0.7,

'ph_stability': (3, 9),

'suitable_for': ['oily_scalp', 'normal'],

'not_suitable_for': ['sensitive', 'dry_scalp'],

'typical_concentration': (8, 15), # 最低-最高百分比

'cost_per_kg': 8.5,

'sustainability_score': 3 # 1-10分

},

'sles': {

'name': 'Sodium Laureth Sulfate (SLES)',

'inci_name': 'Sodium Laureth Sulfate',

'type': 'primary_surfactant',

'function': '清洁力适中,较温和',

'cmc': 0.6,

'toxicity_factor': 0.4,

'ph_stability': (3, 9),

'suitable_for': ['oily_scalp', 'normal', 'combination'],

'not_suitable_for': ['sensitive'],

'typical_concentration': (5, 12),

'cost_per_kg': 9.2,

'sustainability_score': 4

},

'cocamidopropyl_betaine': {

'name': 'Cocamidopropyl Betaine',

'inci_name': 'Cocamidopropyl Betaine',

'type': 'primary_surfactant',

'function': '两性表活,温和低刺激',

'cmc': 1.2,

'toxicity_factor': 0.1,

'ph_stability': (4, 10),

'suitable_for': ['all'],

'not_suitable_for': [],

'typical_concentration': (3, 8),

'cost_per_kg': 12.5,

'sustainability_score': 6

},

'decyl_glucoside': {

'name': 'Decyl Glucoside',

'inci_name': 'Decyl Glucoside',

'type': 'primary_surfactant',

'function': '非离子表活,超温和,生物降解性好',

'cmc': 0.2,

'toxicity_factor': 0.05,

'ph_stability': (3, 11),

'suitable_for': ['sensitive', 'dry_scalp', 'baby'],

'not_suitable_for': [],

'typical_concentration': (5, 10),

'cost_per_kg': 18.0,

'sustainability_score': 9

},

'coco_glucoside': {

'name': 'Coco Glucoside',

'inci_name': 'Coco Glucoside',

'type': 'primary_surfactant',

'function': '非离子表活,温和清洁',

'cmc': 0.15,

'toxicity_factor': 0.03,

'ph_stability': (3, 11),

'suitable_for': ['sensitive', 'dry_scalp', 'eco_conscious'],

'not_suitable_for': [],

'typical_concentration': (4, 8),

'cost_per_kg': 16.5,

'sustainability_score': 9

},

# ========== 辅表面活性剂 ==========

'cocamide_meA': {

'name': 'Cocamide MEA',

'inci_name': 'Cocamide MEA',

'type': 'co_surfactant',

'function': '稳泡剂,降低刺激性',

'typical_concentration': (2, 5),

'cost_per_kg': 14.0,

'sustainability_score': 5

},

'lauramide_dea': {

'name': 'Lauramide DEA',

'inci_name': 'Lauramide DEA',

'type': 'co_surfactant',

'function': '增稠稳泡',

'typical_concentration': (1, 4),

'cost_per_kg': 13.5,

'sustainability_score': 4

},

'peg_7_glyceryl_cocoate': {

'name': 'PEG-7 Glyceryl Cocoate',

'inci_name': 'PEG-7 Glyceryl Cocoate',

'type': 'co_surfactant',

'function': '乳化润肤,改善肤感',

'typical_concentration': (2, 6),

'cost_per_kg': 22.0,

'sustainability_score': 7

},

# ========== 调理剂 ==========

'polyquaternium_10': {

'name': 'Polyquaternium-10',

'inci_name': 'Polyquaternium-10',

'type': 'conditioner',

'function': '阳离子调理,抗静电,增加顺滑',

'typical_concentration': (0.2, 1.5),

'cationic': True, # 阳离子性质,与阴离子表活相容需注意

'cost_per_kg': 35.0,

'sustainability_score': 6

},

'guar_hptc': {

'name': 'Guar Hydroxypropyltrimonium Chloride',

'inci_name': 'Guar Hydroxypropyltrimonium Chloride',

'type': 'conditioner',

'function': '天然来源阳离子调理剂',

'typical_concentration': (0.1, 0.8),

'cationic': True,

'cost_per_kg': 42.0,

'sustainability_score': 8

},

'hydrolyzed_silk': {

'name': 'Hydrolyzed Silk Protein',

'inci_name': 'Hydrolyzed Silk',

'type': 'conditioner',

'function': '蛋白质修复,增加光泽',

'typical_concentration': (0.5, 2.0),

'cost_per_kg': 85.0,

'sustainability_score': 5

},

'behentrimonium_chloride': {

'name': 'Behentrimonium Chloride',

'inci_name': 'Behentrimonium Chloride',

'type': 'conditioner',

'function': '强效抗静电,适合受损发质',

'typical_concentration': (0.2, 1.0),

'cationic': True,

'cost_per_kg': 55.0,

'sustainability_score': 4

},

# ========== 保湿剂 ==========

'glycerin': {

'name': 'Glycerin',

'inci_name': 'Glycerin',

'type': 'humectant',

'function': '经典保湿剂,吸湿性强',

'typical_concentration': (2, 8),

'cost_per_kg': 6.5,

'sustainability_score': 8

},

'propanediol': {

'name': 'Propanediol',

'inci_name': 'Propanediol',

'type': 'humectant',

'function': '新一代保湿剂,清爽不粘腻',

'typical_concentration': (2, 6),

'cost_per_kg': 15.0,

'sustainability_score': 9

},

'panthenol': {

'name': 'Panthenol (Vitamin B5)',

'inci_name': 'Panthenol',

'type': 'humectant',

'function': '保湿修复,舒缓抗炎',

'typical_concentration': (0.5, 3.0),

'cost_per_kg': 28.0,

'sustainability_score': 7

},

'betaine': {

'name': 'Betaine',

'inci_name': 'Betaine',

'type': 'humectant',

'function': '天然甜菜碱,保湿抗刺激',

'typical_concentration': (1, 5),

'cost_per_kg': 25.0,

'sustainability_score': 8

},

# ========== pH调节剂 ==========

'citric_acid': {

'name': 'Citric Acid',

'inci_name': 'Citric Acid',

'type': 'ph_adjuster',

'function': '有机酸,调节pH至弱酸性',

'typical_concentration': (0.1, 1.0),

'cost_per_kg': 7.5,

'sustainability_score': 9

},

'sodium_citrate': {

'name': 'Sodium Citrate',

'inci_name': 'Sodium Citrate',

'type': 'ph_adjuster',

'function': '柠檬酸钠,缓冲剂',

'typical_concentration': (0.2, 1.5),

'cost_per_kg': 9.0,

'sustainability_score': 9

},

'lactic_acid': {

'name': 'Lactic Acid',

'inci_name': 'Lactic Acid',

'type': 'ph_adjuster',

'function': '天然乳酸,温和调节pH',

'typical_concentration': (0.1, 0.8),

'cost_per_kg': 18.0,

'sustainability_score': 8

},

# ========== 防腐剂 ==========

'phenoxyethanol': {

'name': 'Phenoxyethanol',

'inci_name': 'Phenoxyethanol',

'type': 'preservative',

'function': '广谱防腐剂,低刺激',

'typical_concentration': (0.5, 1.2),

'ph_range': (4, 8),

'allergen': False,

'cost_per_kg': 32.0,

'sustainability_score': 6

},

'sodium_benzoate': {

'name': 'Sodium Benzoate',

'inci_name': 'Sodium Benzoate',

'type': 'preservative',

'function': '有机酸防腐剂',

'typical_concentration': (0.2, 0.8),

'ph_range': (3, 6),

'allergen': False,

'cost_per_kg': 8.5,

'sustainability_score': 8

},

'potassium_sorbate': {

'name': 'Potassium Sorbate',

'inci_name': 'Potassium Sorbate',

'type': 'preservative',

'function': '食品级防腐剂,温和',

'typical_concentration': (0.2, 0.6),

'ph_range': (3, 6),

'allergen': False,

'cost_per_kg': 15.0,

'sustainability_score': 9

},

'caprylyl_glycol': {

'name': 'Caprylyl Glycol',

'inci_name': 'Caprylyl Glycol',

'type': 'preservative',

'function': '多功能添加剂,防腐+保湿',

'typical_concentration': (0.3, 1.0),

'ph_range': (3, 10),

'allergen': False,

'cost_per_kg': 28.0,

'sustainability_score': 8

},

# ========== 功能性添加剂 ==========

'salicylic_acid': {

'name': 'Salicylic Acid',

'inci_name': 'Salicylic Acid',

'type': 'functional_additive',

'function': '去屑剂,角质溶解',

'typical_concentration': (0.2, 2.0),

'for_condition': 'oily_scalp',

'cost_per_kg': 45.0,

'sustainability_score': 6

},

'zinc_pyrithione': {

'name': 'Zinc Pyrithione',

'inci_name': 'Zinc Pyrithione',

'type': 'functional_additive',

'function': '抗真菌去屑',

'typical_concentration': (0.3, 1.5),

'for_condition': 'oily_scalp',

'cost_per_kg': 65.0,

'sustainability_score': 5

},

'allantoin': {

'name': 'Allantoin',

'inci_name': 'Allantoin',

'type': 'functional_additive',

'function': '舒缓抗炎,促进愈合',

'typical_concentration': (0.1, 0.5),

'for_condition': 'sensitive',

'cost_per_kg': 38.0,

'sustainability_score': 7

},

'niacinamide': {

'name': 'Niacinamide (Vitamin B3)',

'inci_name': 'Niacinamide',

'type': 'functional_additive',

'function': '屏障修复,控油抗炎',

'typical_concentration': (0.5, 4.0),

'for_condition': 'oily_scalp',

'cost_per_kg': 75.0,

'sustainability_score': 6

},

'tocopherol': {

'name': 'Tocopherol (Vitamin E)',

'inci_name': 'Tocopherol',

'type': 'functional_additive',

'function': '抗氧化,保护脂质',

'typical_concentration': (0.1, 1.0),

'cost_per_kg': 22.0,

'sustainability_score': 7

},

# ========== 溶剂/载体 ==========

'water': {

'name': 'Purified Water',

'inci_name': 'Aqua',

'type': 'solvent',

'function': '溶剂,基质',

'typical_concentration': (50, 80),

'cost_per_kg': 0.5,

'sustainability_score': 10

},

'deionized_water': {

'name': 'Deionized Water',

'inci_name': 'Aqua',

'type': 'solvent',

'function': '高纯度溶剂,减少离子干扰',

'typical_concentration': (50, 80),

'cost_per_kg': 2.0,

'sustainability_score': 9

}

}

# ==================== 发质/肤质档案模板 ====================

SKIN_HAIR_TYPES = {

'oily_scalp': {

'name': '油性头皮',

'characteristics': ['皮脂分泌旺盛', '发根易扁塌', '需频繁清洗'],

'preferred_surfactants': ['sles', 'sls', 'cocamidopropyl_betaine'],

'avoided_ingredients': ['heavy_oils', 'excessive_conditioners'],

'target_ph': (5.5, 6.5),

'recommended_functional': ['salicylic_acid', 'zinc_pyrithione', 'niacinamide'],

'cleansing_power_needed': 8, # 1-10

'moisturization_level': 3 # 1-10

},

'dry_scalp': {

'name': '干性头皮',

'characteristics': ['皮脂不足', '头皮瘙痒', '发梢分叉'],

'preferred_surfactants': ['decyl_glucoside', 'coco_glucoside', 'cocamidopropyl_betaine'],

'avoided_ingredients': ['sls', 'high_concentration_surfactants'],

'target_ph': (4.5, 5.5),

'recommended_functional': ['panthenol', 'betaine', 'hydrolyzed_silk'],

'cleansing_power_needed': 4,

'moisturization_level': 8

},

'sensitive': {

'name': '敏感性头皮/肌肤',

'characteristics': ['易红痒', '屏障脆弱', '对刺激敏感'],

'preferred_surfactants': ['decyl_glucoside', 'coco_glucoside'],

'avoided_ingredients': ['sls', 'sles', 'fragrance', 'formaldehyde_donors'],

'target_ph': (4.5, 5.0),

'recommended_functional': ['allantoin', 'panthenol', 'tocopherol'],

'cleansing_power_needed': 3,

'moisturization_level': 7

},

'damaged_hair': {

'name': '受损发质',

'characteristics': ['化学处理', '弹性差', '易断'],

'preferred_surfactants': ['cocamidopropyl_betaine', 'decyl_glucoside'],

'avoided_ingredients': ['harsh_surfactants', 'high_pH'],

'target_ph': (5.0, 6.0),

'recommended_functional': ['hydrolyzed_silk', 'behentrimonium_chloride', 'panthenol'],

'cleansing_power_needed': 4,

'moisturization_level': 9

},

'normal': {

'name': '正常/混合性',

'characteristics': ['平衡状态', '偶有出油或干燥'],

'preferred_surfactants': ['sles', 'cocamidopropyl_betaine', 'decyl_glucoside'],

'avoided_ingredients': ['extreme_ingredients'],

'target_ph': (5.0, 6.0),

'recommended_functional': ['glycerin', 'tocopherol', 'panthenol'],

'cleansing_power_needed': 6,

'moisturization_level': 5

}

}

# ==================== 安全阈值与限制 ====================

SAFETY_LIMITS = {

'max_total_surfactant': 25, # 表面活性剂总量上限(%)

'min_water_content': 50, # 最小含水量(%)

'max_sls_concentration': 15, # SLS最大浓度

'max_sles_concentration': 12, # SLES最大浓度

'min_preservative': 0.3, # 最小防腐剂浓度

'max_salt_concentration': 2, # 最大电解质浓度(影响粘度)

'ph_skin_range': (4.0, 7.0), # 皮肤安全pH范围

'ph_scalp_range': (4.5, 7.0), # 头皮安全pH范围

'max_allergenic_ingredients': 2 # 最大致敏原数量

}

# ==================== 相分离配方顺序 ====================

PHASE_ORDER = {

'A': '水相 - 水、保湿剂、水溶性功效成分',

'B': '油相 - 脂溶性成分、乳化剂(如适用)',

'C': '表活相 - 主/辅表面活性剂',

'D': '调节相 - pH调节剂、电解质',

'E': '功能相 - 防腐剂、香精、活性物'

}

# ==================== 化学常数 ====================

CHEMICAL_CONSTANTS = {

'avogadro_number': 6.022e23,

'gas_constant': 8.314, # J/(mol·K)

'water_density': 1.0, # g/mL

'default_batch_size': 100, # 默认配方批量(克)

'temperature_standard': 25, # 标准温度(℃)

'ionic_strength_factor': 0.1 # 离子强度对CMC的影响系数

}

2. calculator.py(配方计算核心逻辑)

"""

洗发水与沐浴露智能配方系统 - 核心计算模块

实现配方计算、性能评估、兼容性分析

"""

import math

import numpy as np

from config import (

INGREDIENT_DATABASE,

SKIN_HAIR_TYPES,

SAFETY_LIMITS,

CHEMICAL_CONSTANTS,

PHASE_ORDER

)

class FormulationCalculator:

"""

配方计算核心引擎

实现各种化学计量学计算和性能评估

"""

def __init__(self, batch_size=100.0):

"""

初始化计算器

:param batch_size: 配方批量大小(克)

"""

self.batch_size = batch_size

self.ingredient_data = INGREDIENT_DATABASE

self.safety_limits = SAFETY_LIMITS

def calculate_scsc(self, surfactant1, surfactant2, conc1, conc2):

"""

计算表面活性剂复配协同系数(SCSC)

基于CMC理论和分子相似性

:param surfactant1: 第一种表面活性剂键名

:param surfactant2: 第二种表面活性剂键名

:param conc1: 第一种表面活性剂浓度(%)

:param conc2: 第二种表面活性剂浓度(%)

:return: SCSC值和协同性评价

"""

data1 = self.ingredient_data[surfactant1]

data2 = self.ingredient_data[surfactant2]

cmc1 = data1['cmc']

cmc2 = data2['cmc']

# 计算CMC几何平均

cmc_geometric_mean = math.sqrt(cmc1 * cmc2)

# 浓度倒数之和

conc_sum_reciprocal = (conc1 + conc2) / (conc1 * conc2)

# 分子结构相似性因子(简化处理)

similarity_factor = self._calculate_structure_similarity(surfactant1, surfactant2)

# SCSC计算

scsc = math.sqrt(cmc1 * cmc2) * conc_sum_reciprocal * similarity_factor

# 协同性评价

if scsc > 1.5:

synergy_level = "强协同 ✅"

elif scsc > 1.0:

synergy_level = "中等协同 ➕"

elif scsc > 0.5:

synergy_level = "弱协同 ◐"

else:

synergy_level = "无协同/拮抗 ⚠️"

return {

'scsc_value': round(scsc, 3),

'synergy_level': synergy_level,

'cmc_geometric_mean': round(cmc_geometric_mean, 2),

'similarity_factor': round(similarity_factor, 3)

}

def _calculate_structure_similarity(self, surf1_key, surf2_key):

"""

计算两种表面活性剂的结构相似性因子

基于尾部链长度和头部基团类型

:return: 相似性因子(0-1)

"""

# 表面活性剂分类相似性矩阵

structure_groups = {

'anionic': ['sls', 'sles'],

'zwitterionic_amphoteric': ['cocamidopropyl_betaine'],

'nonionic_polyglucoside': ['decyl_glucoside', 'coco_glucoside']

}

# 查找所属组别

group1 = None

group2 = None

for group_name, members in structure_groups.items():

if surf1_key in members:

group1 = group_name

if surf2_key in members:

group2 = group_name

if group1 == group2:

return 1.0 # 同组完全相似

elif group1 is not None and group2 is not None:

return 0.5 # 不同组中等相似

else:

return 0.3 # 未知组低相似

def calculate_cleaning_power_index(self, formulation):

"""

计算清洁力指数(CLI)

基于表面活性剂的疏水性和浓度

:param formulation: 配方字典 {ingredient_key: concentration}

:return: CLI值(0-100)和清洁力评价

"""

cli = 0.0

total_surfactant = 0.0

for ingredient_key, concentration in formulation.items():

if ingredient_key in self.ingredient_data:

data = self.ingredient_data[ingredient_key]

if data['type'] in ['primary_surfactant', 'co_surfactant']:

# 疏水性指标(辛醇-水分配系数对数近似值)

hydrophobicity = self._estimate_log_p(data['name'])

# 清洁力贡献

contribution = concentration * math.log10(max(hydrophobicity, 1))

cli += contribution

tota

利用AI解决实际问题,如果你觉得这个工具好用,欢迎关注长安牧笛!

http://www.jsqmd.com/news/449826/

相关文章:

  • 一文搞懂MCP、Agent、Skills:AI时代三大核心概念深度对比,搞懂了少走3年弯路
  • 【无人机追踪】基于资源树多约束 (能耗 时间 联盟)的多无人机任务分配算法附Matlab代码
  • 2026年企业AI战略必看:GEO服务商选型指南与精准适配路径 - 品牌推荐
  • 分账和代付,哪个更适合你
  • 攻防世界——pwn引导模式—forgot
  • 互联网大厂Java求职者面试模拟文章:三轮深度问答及详尽解析
  • 代码重构美学大赛
  • 最大接入容量的光伏选址定容或者光伏电源在配网中选址定容 利用随机权重的粒子群算法
  • 2026年企业AI战略必看:GEO优化服务商选型指南与精准适配场景实测。 - 品牌推荐
  • 进程间通信
  • 毕设程序javaEHS安全环保管理系统 基于SpringBoot的企业环境健康安全(EHS)数字化管控平台 Java驱动的企业HSE安全生产与环境保护综合管理平台
  • 靠谱的太原洗浴设计公司
  • 柯伊伯计划API测试体系深度
  • 基于python去中心化知识图谱系统
  • 电磁仿真模型
  • 模拟传动系统工况
  • 有哪些靠谱申博辅导机构?2026最新挑选标准+优质推荐
  • 2026本地生意破局:为什么懂行的老板做GEO都找袁平安?
  • 改进粒子滤波的无人机三维航迹预测方法 - 分别对x、y、z三个方向的位置、速度、加速度进行预测...
  • 零食电商平台源码|SpringBoot后端+Vue前端|MySQL数据库|前后端分离架构|含部署视频与万字详解文档
  • 在工业现场遇到三相电压不平衡时,级联H桥结构的STATCOM就像个稳如老狗的电网医生。这货的三层控制策略玩得贼溜,今天咱们拆开看看它怎么在电网不平衡时秀操作
  • VS code 加 C++
  • 洛谷P14923、P11967、P10289、P10725、P13019、P13020、P10726、P10264、P14924题解
  • 收藏!小白程序员必看:2026中国“人工智能+”最新进展与行业趋势深度解读
  • Rinne Loves Edges【牛客tracker 每日一题】
  • 【架构实战】政企大模型落地的“安全红线”:深度拆解实在智能私有化部署与本地 Agent 护城河
  • 【光学】基于matlab微环谐振腔的高阶全光学微分方程求解器仿真(含报告)【含Matlab源码 15107期】
  • 收藏 | 小白/程序员必看:轻松理解AI Agent,开启大模型学习之旅!
  • AI时代下企业数智化转型的思考与实践之1-2数字世界的构建
  • 2026 年 3 月聚焦:智推时代 GEO 服务成企业增长首选伙伴