Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
removing timeout and engine from args (#50)
  • Loading branch information
christinakim committed Jul 14, 2021
commit 498eae1aa1bb216a0ef2097c9684a67dfad73fa8
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"