Skip to content

Commit

Permalink
removing timeout and engine from args (#50) (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
christinakim committed Jul 14, 2021
1 parent 8547320 commit 7afc3b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openai/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class Model:
@classmethod
def get(cls, args):
resp = openai.Model.retrieve(
engine=args.engine, id=args.id, timeout=args.timeout
id=args.id,
)
print(resp)

Expand Down
2 changes: 1 addition & 1 deletion openai/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.10.0"
VERSION = "0.10.1"

0 comments on commit 7afc3b5

Please sign in to comment.