most-client 1.0.33__tar.gz → 1.0.34__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: most-client
3
- Version: 1.0.33
3
+ Version: 1.0.34
4
4
  Summary: Most AI API for https://the-most.ai
5
5
  Home-page: https://github.com/the-most-ai/most-client
6
6
  Author: George Kasparyants
@@ -393,7 +393,7 @@ class MostClient(object):
393
393
  })
394
394
  return self.retort.load(resp.json(), StoredAudioData)
395
395
 
396
- def fetch_info(self, audio_id: str) -> Dict[str, str | int | float]:
396
+ def fetch_info(self, audio_id: str) -> Dict[str, str]:
397
397
  if not is_valid_id(audio_id):
398
398
  raise RuntimeError("Please use valid audio_id. [try audio.id from list_audios()]")
399
399
 
@@ -400,7 +400,7 @@ class AsyncMostClient(object):
400
400
  })
401
401
  return self.retort.load(resp.json(), StoredAudioData)
402
402
 
403
- async def fetch_info(self, audio_id: str) -> Dict[str, str | int | float]:
403
+ async def fetch_info(self, audio_id: str) -> Dict[str, str]:
404
404
  if not is_valid_id(audio_id):
405
405
  raise RuntimeError("Please use valid audio_id. [try audio.id from list_audios()]")
406
406
  resp = await self.get(f"/{self.client_id}/audio/{audio_id}/info")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: most-client
3
- Version: 1.0.33
3
+ Version: 1.0.34
4
4
  Summary: Most AI API for https://the-most.ai
5
5
  Home-page: https://github.com/the-most-ai/most-client
6
6
  Author: George Kasparyants
@@ -8,7 +8,7 @@ with open('requirements.txt', 'r') as f:
8
8
 
9
9
  setup(
10
10
  name='most-client',
11
- version='1.0.33',
11
+ version='1.0.34',
12
12
  python_requires=f'>=3.6',
13
13
  description='Most AI API for https://the-most.ai',
14
14
  url='https://github.com/the-most-ai/most-client',
File without changes
File without changes
File without changes
File without changes