Trello
TrelloReader #
基类: BaseReader
Trello 读取器。从 Trello 看板和卡片读取数据。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
api_key
|
str
|
Trello API 密钥。 |
必填 |
api_token
|
str
|
Trello API 令牌。 |
必填 |
源代码位于 llama-index-integrations/readers/llama-index-readers-trello/llama_index/readers/trello/base.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
load_data #
load_data(board_id: str) -> List[Document]
从 Trello 看板加载数据。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
board_id
|
str
|
Trello 看板 ID。 |
必填 |
返回
类型 | 描述 |
---|---|
List[Document]
|
List[Document]: 表示 Trello 卡片的文档列表。 |
源代码位于 llama-index-integrations/readers/llama-index-readers-trello/llama_index/readers/trello/base.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|