get-opik-help
Retrieve contextual assistance for Opik Comet's features, including prompts, projects, traces, and metrics, by specifying a topic or subtopic for tailored guidance.
Instructions
Get contextual help about Opik Comet's capabilities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subtopic | No | Optional subtopic for more specific help | |
topic | Yes | The topic to get help about (prompts, projects, traces, metrics, or general) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"subtopic": {
"description": "Optional subtopic for more specific help",
"type": "string"
},
"topic": {
"description": "The topic to get help about (prompts, projects, traces, metrics, or general)",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}