File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Codegpt
2
2
3
- ## 0.2.13
3
+ ## 0.2.15
4
4
5
5
A tool for using GPT just a little quicker. A nearly truly automated footgun. Learn how to revert with git before trying please.
6
6
Original file line number Diff line number Diff line change 3
3
import typer
4
4
from typing import Dict
5
5
from textwrap import dedent
6
- from parse import parse_resp
6
+ from codegpt . parse import parse_resp
7
7
8
8
try :
9
9
nltk .data .find ('tokenizers/punkt' )
Original file line number Diff line number Diff line change 4
4
import logging
5
5
6
6
7
- import gpt_interface as gpt
7
+ from codegpt import gpt_interface as gpt
8
8
9
- import prompts
10
- import files
9
+ from codegpt import prompts
10
+ from codegpt import files
11
11
12
12
from typing import List , Optional
13
13
from pathlib import Path
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " codegpt"
3
- version = " 0.2.13 "
3
+ version = " 0.2.15 "
4
4
license = " GPL-3.0-or-later"
5
5
description = " A CLI tool for refactoring code using OpenAI's models"
6
6
authors = [" John Partee" ]
@@ -21,7 +21,7 @@ requires = ["poetry>=0.12"]
21
21
build-backend = " poetry.masonry.api"
22
22
23
23
[tool .poetry .scripts ]
24
- codegpt = " src .main:app"
24
+ codegpt = " codegpt .main:app"
25
25
26
26
[tool .pytest ]
27
27
addopts = " --capture=fd --cov=my_module"
You can’t perform that action at this time.
0 commit comments