Command Reference ( a2asv mode )

List of a2asv mode commands.

a2asv ( reload ) : cmdbox -m a2asv -c reload <Option>

  • Reload agents on the A2A server.

Option

Type

Multi

Required

Default

Choices

Description

--a2asv_reload_url <a2asv_reload_url>

str

required

http://localhost:8071/a2a_reload

Specify the base URL of the A2A server. e.g. http://localhost:8071/a2a_reload

--a2asv_apikey <a2asv_apikey>

passwd

Specify the API Key of the A2A server.

--send_method <send_method>

str

required

POST

GET | POST

Specify the HTTP method to send to /a2a_reload.

--send_verify <send_verify>

bool

False

False | True

Specify whether to enable HTTPS certificate verification.

--send_timeout <send_timeout>

int

120

Specify timeout seconds waiting for A2A server response.

Output Schema

This command implements output_schema() returning Result model.

{
  "success": {
    "save_mode": "string",
    "performance": [
      {
        "key": "string",
        "value": null
      }
    ],
    "status_code": 0,
    "url": "string",
    "data": {}
  },
  "warn": {},
  "error": {},
  "output_schema": {},
  "end": false
}

Field

Type

Required

Default

Description

success

Data | null

no

null

成功した場合の結果

success.save_mode

str | null

no

null

保存モード

success.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

success.status_code

int | null

no

null

HTTPステータスコード

success.url

str | null

no

null

呼び出したURL

success.data

dict[str, any] | str | null

no

null

レスポンスデータ

warn

dict[str, any] | list[any] | Data | str | bool | null

no

null

警告がある場合の結果

warn.save_mode

str | null

no

null

保存モード

warn.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

error

dict[str, any] | list[any] | Data | str | bool | null

no

null

エラーがある場合の結果

error.save_mode

str | null

no

null

保存モード

error.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

output_schema

dict[str, any] | null

no

null

スキーマ情報

end

bool | null

no

null

終了フラグ

a2asv ( start ) : cmdbox -m a2asv -c start <Option>

  • Start A2A server.

Option

Type

Multi

Required

Default

Choices

Description

--host <host>

str

required

localhost

Specify the service host of the Redis server.

--port <port>

int

required

6379

Specify the service port of the Redis server.

--password <password>

passwd

required

password

Specify the access password of the Redis server (optional). If omitted, password is used.

--svname <svname>

str

required

cmdbox

Specify the service name of the inference server. If omitted, server is used.

--data <data>

dir

C:Usershama.cmdbox

When omitted, $HONE/.cmdbox is used.

--retry_count <retry_count>

int

3

Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever.

--retry_interval <retry_interval>

int

5

Specifies the number of seconds before reconnecting to the Redis server.

--timeout <timeout>

int

60

Specify the maximum waiting time until the server responds.

--allow_host <allow_host>

str

0.0.0.0

If omitted, 0.0.0.0 is used.

--a2asv_listen_port <a2asv_listen_port>

int

8071

If omitted, 8071 is used.

--ssl_a2asv_listen_port <ssl_a2asv_listen_port>

int

8433

If omitted, 8433 is used.

--ssl_cert <ssl_cert>

file

Specify the SSL server certificate file.

--ssl_key <ssl_key>

file

Specify the SSL server private key file.

--ssl_keypass <ssl_keypass>

str

Specify the composite password for the SSL server private key file.

--ssl_ca_certs <ssl_ca_certs>

file

Specify the SSL server CA certificate file.

--signin_file <signin_file>

file

required

.cmdbox/user_list.yml

Specify a file containing users and passwords with which they can signin.Typically, specify '.cmdbox/user_list.yml'.

--gunicorn_workers <gunicorn_workers>

int

6

Specifies the number of gunicorn workers, valid only in Linux environment. If -1 or unspecified, the number of CPUs is used.

--gunicorn_timeout <gunicorn_timeout>

int

900

Specify the timeout duration of the gunicorn worker in seconds.

--reasoning_effort <reasoning_effort>

str

auto

auto | off | on | low | medium | high | xhigh

Use the agent to specify the depth of the thought chain. You can specify values such as 'auto', 'off', 'on', 'low', 'medium', 'high', or 'xhigh', but depending on the model you're using, some of these may not be supported.

Output Schema

This command implements output_schema() returning Result model.

{
  "success": {
    "save_mode": "string",
    "performance": [
      {
        "key": "string",
        "value": null
      }
    ],
    "data": "string"
  },
  "warn": {},
  "error": {},
  "output_schema": {},
  "end": false
}

Field

Type

Required

Default

Description

success

Data | null

no

null

成功した場合の結果

success.save_mode

str | null

no

null

保存モード

success.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

success.data

str | null

no

null

処理結果のデータ

warn

dict[str, any] | list[any] | Data | str | bool | null

no

null

警告がある場合の結果

warn.save_mode

str | null

no

null

保存モード

warn.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

error

dict[str, any] | list[any] | Data | str | bool | null

no

null

エラーがある場合の結果

error.save_mode

str | null

no

null

保存モード

error.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

output_schema

dict[str, any] | null

no

null

スキーマ情報

end

bool | null

no

null

終了フラグ

a2asv ( stop ) : cmdbox -m a2asv -c stop <Option>

  • Stop A2A server.

Option

Type

Multi

Required

Default

Choices

Description

--data <data>

dir

C:Usershama.cmdbox

When omitted, $HOME/.cmdbox is used.

Output Schema

This command implements output_schema() returning Result model.

{
  "success": {
    "save_mode": "string",
    "performance": [
      {
        "key": "string",
        "value": null
      }
    ],
    "data": "string"
  },
  "warn": {},
  "error": {},
  "output_schema": {},
  "end": false
}

Field

Type

Required

Default

Description

success

Data | null

no

null

成功した場合の結果

success.save_mode

str | null

no

null

保存モード

success.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

success.data

str | null

no

null

処理結果のデータ

warn

dict[str, any] | list[any] | Data | str | bool | null

no

null

警告がある場合の結果

warn.save_mode

str | null

no

null

保存モード

warn.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

error

dict[str, any] | list[any] | Data | str | bool | null

no

null

エラーがある場合の結果

error.save_mode

str | null

no

null

保存モード

error.performance

list[KeyVal] | null

no

null

パフォーマンス情報のリスト

output_schema

dict[str, any] | null

no

null

スキーマ情報

end

bool | null

no

null

終了フラグ