quick_test
Run a quick test to check LibreModel's responsiveness. Choose from test types like 'hello', 'math', 'creative', or 'knowledge' to verify server functionality and ensure smooth communication with local LLM instances.
Instructions
Run a quick test to see if LibreModel is responding
Input Schema
Name | Required | Description | Default |
---|---|---|---|
test_type | No | Type of test to run | hello |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"test_type": {
"default": "hello",
"description": "Type of test to run",
"enum": [
"hello",
"math",
"creative",
"knowledge"
],
"type": "string"
}
},
"type": "object"
}