Skip to content

guspix/llm-tools-jira

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

llm-tools-jira

PyPI Changelog Tests License

Manage Jira issues using LLMs

Installation

Install this plugin in the same environment as LLM.

llm install llm-tools-jira

Usage

To use this with the LLM command-line tool:

llm --tool create_issue "Example prompt goes here" --tools-debug

With the LLM Python API:

import llm
from llm_tools_jira import create_issue

model = llm.get_model("gpt-4.1-mini")

result = model.chain(
    "Example prompt goes here",
    tools=[create_issue]
).text()

Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:

cd llm-tools-jira
python -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

llm install -e '.[test]'

To run the tests:

python -m pytest

About

LLM plugin to manage Jira issues

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages