Taiga는 애자일 팀을 위해 설계된 오픈소스 프로젝트 관리 플랫폼으로, Kanban, Scrum, 이슈 추적과 같은 기능을 제공합니다.

Installation and Setup

langchain-taiga package를 설치하세요:
pip install langchain-taiga
tool이 인증할 수 있도록 환경 변수를 통해 로그인 정보를 제공해야 합니다.
export TAIGA_URL="https://taiga.xyz.org/"
export TAIGA_API_URL="https://taiga.xyz.org/"
export TAIGA_USERNAME="username"
export TAIGA_PASSWORD="pw"
export OPENAI_API_KEY="OPENAI_API_KEY"

Tools

사용 예제를 참조하세요

Toolkit

TaigaToolkit은 여러 Taiga 관련 tool을 단일 인터페이스로 그룹화합니다.
from langchain_taiga.toolkits import TaigaToolkit

toolkit = TaigaToolkit()
tools = toolkit.get_tools()


Future Integrations

자세한 정보는 Taiga Developer Docs를 확인하고, langchain_taiga GitHub repo에서 업데이트나 고급 사용 예제를 확인하세요.

---

<Callout icon="pen-to-square" iconType="regular">
    [Edit the source of this page on GitHub.](https://github.com/langchain-ai/docs/edit/main/src/oss/python/integrations/providers/taiga.mdx)
</Callout>
<Tip icon="terminal" iconType="regular">
    [Connect these docs programmatically](/use-these-docs) to Claude, VSCode, and more via MCP for    real-time answers.
</Tip>
I