Skip to content

Commit 7afc3b5

Browse files
authored
removing timeout and engine from args (#50) (#28)
1 parent 8547320 commit 7afc3b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

openai/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class Model:
180180
@classmethod
181181
def get(cls, args):
182182
resp = openai.Model.retrieve(
183-
engine=args.engine, id=args.id, timeout=args.timeout
183+
id=args.id,
184184
)
185185
print(resp)
186186

openai/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.10.0"
1+
VERSION = "0.10.1"

0 commit comments

Comments
 (0)