Перейти к основному содержанию

Documentation Index

Fetch the complete documentation index at: https://docs.hybridbox.io/llms.txt

Use this file to discover all available pages before exploring further.

Обратная связь

Отправлять отзывы о продукте и отчеты об ошибках от агентов. В примерах используется режим кода A2A. MCP предоставляет тот же режим кода через инструмент execute.

Функции

feedback.submit

feedback.submit(account_id: str, category: "bug_report" | "product_feedback" | "feature_request" | "other", description: str, title: str, attributes?: {}, paid_product_feature?: bool) -> Feedback
Обратная связь: feedback.submit.
СвойствоЗначениеСвойствоЗначение
Требуется аутентификациядаРежим выполненияsync
Публичный маршрут APIPOST /v1/public/accounts/{account_id}/feedback
ИмяТипОбязательный
account_idstrда
category"bug_report" | "product_feedback" | "feature_request" | "other"да
descriptionstrда
titlestrда
attributes{}нет
paid_product_featureboolнет
ПолеТипОбязательный
account_idstrда
attributes{}да
category"bug_report" | "product_feedback" | "feature_request" | "other"да
created_atstrда
created_by_user_idstrда
descriptionstrда
idstrда
paid_product_featureboolда
status"new" | "triaged" | "planned" | "in_progress" | "closed"да
submitter_emailstrда
submitter_namestrда
titlestrда
updated_atstrда
admin_notesstr | nullнет
Запрос:
{
  "request_id": "example",
  "session_id": "session_123",
  "code": "feedback.submit(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", category=\"<string>\", description=\"<string>\", title=\"<string>\", attributes=\"<string>\", paid_product_feature=true)"
}
Ответ:
{
  "request_id": "example",
  "status": "completed",
  "result": {
    "last_value": "<string>"
  },
  "responses": [
    {
      "index": 0,
      "function": "feedback.submit",
      "status": "completed",
      "result": "<string>"
    }
  ],
  "complexity_score": 1
}
Запрос:
{
  "jsonrpc": "2.0",
  "id": "example",
  "method": "tools/call",
  "params": {
    "name": "hybridbox_execute",
    "arguments": {
      "code": "feedback.submit(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", category=\"<string>\", description=\"<string>\", title=\"<string>\", attributes=\"<string>\", paid_product_feature=true)"
    }
  }
}
Ответ:
{
  "jsonrpc": "2.0",
  "id": "example",
  "result": {
    "content": [
      {
        "type": "text",
        "text": "{\n  \"request_id\": \"example\",\n  \"status\": \"completed\",\n  \"result\": {\n    \"last_value\": \"<string>\"\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"feedback.submit\",\n      \"status\": \"completed\",\n      \"result\": \"<string>\"\n    }\n  ],\n  \"complexity_score\": 1\n}"
      }
    ],
    "isError": false
  }
}