Skip to content

Commit

Permalink
Bump llm_utils version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicovank committed Jan 24, 2024
1 parent 1a34e31 commit 47b464f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
{ name="Nicolas van Kempen", email="[email protected]" },
{ name="Bryce Adelstein Lelbach", email="[email protected]" }
]
dependencies = ["llm_utils==0.2.3", "openai>=1.3.6", "PyYAML>=6.0.1", "rich>=13.7.0"]
dependencies = ["llm_utils==0.2.4", "openai>=1.3.6", "PyYAML>=6.0.1", "rich>=13.7.0"]
description = "Explains and proposes fixes for compile-time errors for many programming languages."
readme = "README.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion src/cwhy/conversation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import textwrap

from llm_utils import llm_utils
import llm_utils

from . import functions

Expand Down
2 changes: 1 addition & 1 deletion src/cwhy/conversation/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
from typing import Optional

from llm_utils import llm_utils
import llm_utils


class Functions:
Expand Down
2 changes: 1 addition & 1 deletion src/cwhy/cwhy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import openai

from llm_utils import llm_utils
import llm_utils

from . import conversation, prompts

Expand Down
2 changes: 1 addition & 1 deletion src/cwhy/prompts.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
import sys

from llm_utils import llm_utils
import llm_utils


# Define error patterns with associated information. The numbers
Expand Down

0 comments on commit 47b464f

Please sign in to comment.