Overview
Integration details
| Class | Package | Serializable | JS support | Version |
|---|---|---|---|---|
create_entity_tool, search_entities_tool, get_entity_by_ref_tool, update_entity_by_ref_tool , add_comment_by_ref_tool, add_attachment_by_ref_tool | langchain-taiga | N/A | TBD |
Tool features
create_entity_tool: Taiga에서 user story, task 및 issue를 생성합니다.search_entities_tool: Taiga에서 user story, task 및 issue를 검색합니다.get_entity_by_ref_tool: reference로 user story, task 또는 issue를 가져옵니다.update_entity_by_ref_tool: reference로 user story, task 또는 issue를 업데이트합니다.add_comment_by_ref_tool: user story, task 또는 issue에 댓글을 추가합니다.add_attachment_by_ref_tool: user story, task 또는 issue에 첨부 파일을 추가합니다.
Setup
이 integration은langchain-taiga package에 포함되어 있습니다.
Credentials
이 integration을 사용하려면 Taiga 인증을 위해TAIGA_URL, TAIGA_API_URL, TAIGA_USERNAME, TAIGA_PASSWORD 및 OPENAI_API_KEY를 환경 변수로 설정해야 합니다.
Instantiation
아래는langchain_taiga에서 Taiga 도구를 인스턴스화하는 방법을 보여주는 예제입니다. 특정 사용 사례에 맞게 조정하세요.
Invocation
Direct invocation with args
아래는 dictionary에 keyword argument를 사용하여 도구를 호출하는 간단한 예제입니다.Invocation with ToolCall
model이 생성한ToolCall이 있는 경우, 아래 형식으로 tool.invoke()에 전달하세요.
Chaining
아래는 LLM과 함께 chain 또는 agent에서create_entity_tool 및 search_entities_tool 도구를 통합하는 방법을 보여주는 보다 완전한 예제입니다. 이 예제는 적절한 경우 도구를 호출할 수 있는 LangChain 스타일 agent를 설정하는 함수(예: create_agent)가 있다고 가정합니다.
API reference
사용 세부 정보, parameter 및 고급 구성에 대해서는 다음의 docstring을 참조하세요:Connect these docs programmatically to Claude, VSCode, and more via MCP for real-time answers.