Skip to content

Commit c2fd525

Browse files
committed
formatted
1 parent b805f2a commit c2fd525

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/qc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Check common spelling errors
3030
run: poetry run tox -e codespell
3131

32-
- name: Check code quality with flake8
32+
- name: Check code quality
3333
run: poetry run tox -e lint
3434

3535
- name: Test with pytest and generate coverage file

src/llm_change_agent/utils/llm_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
from langchain_core.documents import Document
99
from langchain_openai import OpenAIEmbeddings
1010
from langchain_text_splitters import RecursiveCharacterTextSplitter
11+
from openai import OpenAI
12+
1113
from llm_change_agent.config.llm_config import AnthropicConfig, CBORGConfig, LLMConfig, OllamaConfig, OpenAIConfig
1214
from llm_change_agent.constants import ANTHROPIC_KEY, CBORG_KEY, KGCL_GRAMMAR, KGCL_SCHEMA, OPENAI_KEY
1315
from llm_change_agent.templates.templates import get_issue_analyzer_template, grammar_explanation
14-
from openai import OpenAI
1516

1617

1718
def get_openai_models():

0 commit comments

Comments
 (0)