File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ print(f"Job ID: {job.id}")
3333response = model.status(job.id, service_provider = service_provider)
3434
3535while response.status == " IN_PROGRESS" :
36- time.sleep(30 )
36+ time.sleep(5 )
3737 response = model.status(job.id, service_provider = service_provider)
38- print (f " Response = { response} . Retrying in 30 seconds " )
38+ print (f " Response = { response} . Retrying in 5 seconds " )
3939
4040print (response)
4141```
Original file line number Diff line number Diff line change @@ -14,14 +14,15 @@ def read_req_file(req_type):
1414
1515setup (
1616 name = "slashml" ,
17- version = "0.0.4 " ,
17+ version = "0.0.5 " ,
1818 url = "https://slashml.com/" ,
1919 author = "eff-kay" ,
2020 author_email = "faiizan14@gmail.com" ,
2121 description = (
2222 "A Python client for interacting with SlashML services" "Developed by SlashML."
2323 ),
2424 long_description = long_description , # Use the contents of the README file
25+ long_description_content_type = "text/markdown" , # Set the type of the README file
2526 packages = find_packages ("." ),
2627 package_dir = {"" : "." },
2728 install_requires = read_req_file ("install" ),
You can’t perform that action at this time.
0 commit comments