report_problem
Tanılama ve sistem · macOS · Windows
Etki: gönderme. Durum: koşullu kullanılabilir.
“Koşullu kullanılabilirlik”, aracın sürüme, platforma, izinlere, hesaba veya yapılandırmaya bağlı olabileceğini belirtir. Her kurulumda etkin olduğu anlamına gelmez.
macOS
Amaç
LMCP ekibine sorun raporu, özellik isteği veya entegrasyon isteği gönderir; kullanıcı bir hata bildirmek, yeni bir özellik istemek ya da LMCP'nin henüz kapsamadığı bir uygulama için destek talep etmek istediğinde kullanılır. confirm=true olmadan, gönderilecek anonim yükün önizlemesini döndürür (sürüm, OS, izin durumu ve son araç adları/hata türü kodları; bağımsız değişkenler, iletiler veya kişisel veriler asla dahil edilmez); confirm=true ile gönderir ve case_id döndürür. type='problem' (varsayılan) hata bildirir, type='feature' yeni özellik ister, type='integration' desteklenmeyen bir uygulama talep eder.
Zorunlu girdiler
Bu platformun şeması zorunlu girdi bildirmiyor. İsteğe bağlı seçiciler veya çalışma zamanı gereksinimleri yine de olabilir.
İzinler ve onay
Şema açık bir onay parametresi bildirir. Önizlemeyi inceleyin ve gerçek işlemi platform sözleşmesine göre yetkilendirin.
- Yalnızca kullanıcının bu platformda yetkilendirdiği uygulamaları, hesapları ve kaynakları kullanın. Bağlantı ve izin gereksinimleri için bu aracın platforma özgü açıklamasına bakın; bu katalog ek OAuth kapsamları veya OS yetkileri bulunduğunu ileri sürmez.
İngilizce kanonik teknik şema — macOS
{
"properties": {
"confirm": {
"description": "Must be true to submit the report. Without it, shows a preview.",
"type": "boolean"
},
"description": {
"description": "Required for type=feature or integration: what the user wants.",
"type": "string"
},
"error_message": {
"description": "For type=problem: verbatim error string from the failed tool.",
"type": "string"
},
"expected": {
"description": "What you or the user expected to happen.",
"type": "string"
},
"report_type": {
"description": "'problem' (default) | 'feature' | 'integration'",
"type": "string"
},
"symptom": {
"description": "Required for type=problem: what is broken, in your own words.",
"type": "string"
},
"tool_attempted": {
"description": "For type=problem: name of the LMCP tool that failed.",
"type": "string"
},
"user_request": {
"description": "What the user originally asked the AI to do.",
"type": "string"
}
},
"required": [],
"type": "object"
}Belge örneği
report_problem için örnek belge. Bu örneği çalıştırmayın. Gösterilen bağımsız değişkenler kurgusal bir veri kümesine aittir; gerçek bir çağrıdan önce gerçek tanıtıcıları bulun ve izin alın.
{
"confirm": false,
"description": "Add a filter for unread messages.",
"report_type": "feature"
}Windows
Amaç
LMCP ekibine bir sorun raporu, özellik isteği veya entegrasyon isteği bildirir.
Zorunlu girdiler
Bu platformun şeması zorunlu girdi bildirmiyor. İsteğe bağlı seçiciler veya çalışma zamanı gereksinimleri yine de olabilir.
İzinler ve onay
Şema açık bir onay parametresi bildirmez. Bu, izinsiz işlem yapma yetkisi vermez; etkiyi inceleyin ve yetki alın.
- Yalnızca kullanıcının bu platformda yetkilendirdiği uygulamaları, hesapları ve kaynakları kullanın. Bağlantı ve izin gereksinimleri için bu aracın platforma özgü açıklamasına bakın; bu katalog ek OAuth kapsamları veya OS yetkileri bulunduğunu ileri sürmez.
İngilizce kanonik teknik şema — Windows
{
"properties": {
"description": {
"description": "Alias source for `message` when `message` is not sent — the Mac schema's field for type=feature/integration.",
"type": "string"
},
"error_message": {
"description": "Folded into `message` when `message` is not sent — verbatim error from the failed tool.",
"type": "string"
},
"expected": {
"description": "Folded into `message` when `message` is not sent — what was expected to happen.",
"type": "string"
},
"message": {
"description": "Description of the problem or request",
"type": "string"
},
"report_type": {
"description": "Alias for `type` — the name the cloud catalog (Mac) advertises ('problem'|'feature'|'integration').",
"type": "string"
},
"symptom": {
"description": "Alias source for `message` when `message` is not sent — the Mac schema's field for type=problem.",
"type": "string"
},
"type": {
"description": "bug, feature, or integration",
"enum": [
"bug",
"feature",
"integration"
],
"type": "string"
}
},
"type": "object"
}Belge örneği
report_problem için örnek belge. Bu örneği çalıştırmayın. Gösterilen bağımsız değişkenler kurgusal bir veri kümesine aittir; gerçek bir çağrıdan önce gerçek tanıtıcıları bulun ve izin alın.
{
"description": "Add a filter for unread messages.",
"report_type": "feature"
}