kobold_complete
Generate text completions using OpenAI-compatible API endpoints. Input a prompt, adjust parameters like max_tokens and temperature, and receive AI-generated responses for diverse applications.
Instructions
Text completion (OpenAI-compatible)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiUrl | No | http://localhost:5001 | |
max_tokens | No | ||
prompt | Yes | ||
stop | No | ||
temperature | No | ||
top_p | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiUrl": {
"default": "http://localhost:5001",
"type": "string"
},
"max_tokens": {
"type": "number"
},
"prompt": {
"type": "string"
},
"stop": {
"items": {
"type": "string"
},
"type": "array"
},
"temperature": {
"type": "number"
},
"top_p": {
"type": "number"
}
},
"required": [
"prompt"
],
"type": "object"
}