upload_file
Upload a local fish image to identify the fish species and receive interesting facts in return. Works with RAGandLLM-MCP for knowledge retrieval.
Instructions
ローカルの魚の画像をアップロードすると魚名と豆知識を返します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | アップロードする魚画像ファイル名フルパス(例: c: empish.jpg) |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"description": "アップロードする魚画像ファイル名フルパス(例: c:\temp\fish.jpg)",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}