finEntityExtract
Extract financial entities like stocks, funds, and sectors from natural language queries to identify codes, names, and classifications for investment analysis.
Instructions
金融实体解析:根据自然语言中提及的个股、基金、概念板块、行业,返回其代码、名称。其中,个股还返回所属概念、所属申万行业,ETF基金返回其跟踪指数
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | 包含股票代码、名称的自然语言问句 |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "包含股票代码、名称的自然语言问句",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}