Cog

Latest version: v0.14.4

Safety actively analyzes 723938 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 33

0.14.2

Changelog
* cbb4517402b1ccd61edd4b94fc8380f112efda37 Add documentation for concurrency support
* 63c62870e6500be4caf84ace032f83a9bacce0b0 Check that dockerignore is compatibile with cog (2210)
* 1ccc20b6a736a305b0001b46a8be89aef220c0ab Fix conditional on util package (2207)
* e75aee73ec0c9815cab874765c66b2e918bd2200 Remove tests from fast-build cog.yaml (2202)
* f8997dc8d8362f2f674a64feb6e8d27f37cc656e Revert "Support Python requirements package[extra,...]==version (2160)"
* 06191ce9f3d2c36e986b85a9f54ff6028b7ba59e Skip weights that are ignored in dockerignore (2213)
* edd038500be8fdcaaee18691f3a65e620e7320f9 Warn the user when they use deprecated fields (2203)

0.14.1

Changelog
* 9a05507f89d40e069ca71b63e3b08e918a6696f0 Make progress bar more pretty (2198)
* 955912d1fe2e51e34d4d9136fb9aee94c1e62f0b Support pulling monobase in macOS (2197)

0.14.0

Support for concurrent predictions

This release introduces support for concurrent processing of predictions through the use of an async predict function.

To enable the feature add the new `concurrency.max` entry to your cog.yaml file:


concurrency:
max: 32


And update your predictor to use the `async def predict` syntax:

python
class Predictor(BasePredictor):
async def setup(self) -> None:
print("async setup is also supported...")

async def predict(self) -> str:
print("async predict");
return "hello world";


Cog will now process up to 32 predictions simultaneously, once at capacity subsequent predictions will return a 409 HTTP response.

Iterators

If your model is currently using `Iterator` or `ConcatenateIterator` it will need to be updated to use `AsyncIterator` or `AsyncConcatenateIterator` respectively.

python
from cog import AsyncConcatenateIterator, BasePredictor

class Predict(BasePredictor):
async def predict(self) -> AsyncConcatenateIterator[str]:
for fruit in ["apple", "banana", "orange"]:
yield fruit

0.14.0alpha1

Support for concurrent predictions

This release introduces support for concurrent processing of predictions through the use of an async predict function.

To enable the feature add the new `concurrency.max` entry to your cog.yaml file:


concurrency:
max: 32


And update your predictor to use the `async def predict` syntax:

python
class Predictor(BasePredictor):
async def setup(self) -> None:
print("async setup is also supported...")

async def predict(self) -> str:
print("async predict");
return "hello world";


Cog will now process up to 32 predictions simultaneously, once at capacity subsequent predictions will return a 409 HTTP response.

Iterators

If your model is currently using `Iterator` or `ConcatenateIterator` it will need to be updated to use `AsyncIterator` or `AsyncConcatenateIterator` respectively.

python
from cog import AsyncConcatenateIterator, BasePredictor

class Predict(BasePredictor):
async def predict(self) -> AsyncConcatenateIterator[str]:
for fruit in ["apple", "banana", "orange"]:
yield fruit

0.13.7

Changelog
* 6eb2d2ea1a9ba3d96ba1dbe12ff9c3b2b08b388e Add a cog integration test for apt-packages (2104)
* 9efb30691947bdcdad734dc5b46e27dcb63616e2 Add fast generator for cog build (2108)
* 60017a92ed0e15d8e048fe0552e802bb214827b7 Add test for ffmpeg in base images (2122)
* 2f12ead687006d087dd229e354fc8fbe0b9cf574 Avoid warnings
* 8dac4059ee443bc687c69bc4000fe2f079fff6c6 Be explicit about the Python version we're expecting in tests
* b7aa7c320ddff8b2cbc247e5d1a367535f76eb4d Fix pydantic2 cog builds (2115)
* 97d749f2ff9d3f98ddfbadae37279220daabc52a Increase `nofile` limit for tests
* 100784903827cbace7c2142ff378b6b4037d95e3 Move _tag_var to Scope
* cb78a0f0d6c3aabbdb63b61fb1b899085e8fa4d9 Officially mark Cog as supporting Python 3.13
* ba1d4c2cc8727b07980e66ac4897cd6fc205f47f Only add webp to mimetypes on old Pythons
* e2ad2a4e1b67e00f976d9229922e86c36d0a2df8 Pin ruff to 0.9.1 and reformat
* b1c9188036742a27a77ae6ad50e6dc4256754228 Update color of dark mode website
* a36b42f9ac2d65ab355d1bb8f75e207ef9d18208 Update fastapi requirement from <0.99.0,>=0.75.2 to >=0.75.2,<0.116.0 (1966)
* 85b85bfeaec2e71907c3dcb036108c2d5ef60145 chore: fix some comments
* d04f127b8157eeae389bb5376f2cd420b08c2612 convert Scope to attrs.frozen

0.13.6

Changelog
* 8e9e53e54af491d28510960a70e64070669d4a31 Remove duplicate 3.10 python version (2073)
* 960b0e478d1f7f1f2faafffa3f8883eabf34e5ad Remove python 3.13 from torch compatibility (2072)

Page 3 of 33

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.