Registry / ai-ml / qwak-core

qwak-core

JSON →
library0.7.64pypypi✓ verified 82d ago

Qwak Core provides the foundational objects and communication tools for interacting with the Qwak MLOps platform (version 0.7.64). It includes model inference clients, authentication utilities, and other core abstractions. The library is released frequently, with multiple releases per month.

pip install qwak-core
INSTALL
IMPORT
SIG · QWAK-CORE
Q
qwak-core
ai-mlpythonv0.7.64
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

QwakClient
from qwak import QwakClient
from qwak.core.inference import QwakInferenceClient

Initialize authentication and inference client, then run a prediction.

from qwak.core.inference import QwakInferenceClient from qwak.core.auth import QwakAuth api_key = os.environ.get('QWAK_API_KEY', '') auth = QwakAuth(api_key=api_key) client = QwakInferenceClient(auth=auth) response = client.predict(model_id='my-model', input_data={'feature1': 1.0}) print(response)
Debug
Known issues
breakingPython version requirement changed: qwak-core 0.7.x requires Python >=3.9,<3.12. Python 3.6 and 3.7 are not supported.
fix
Use Python 3.9, 3.10, or 3.11.
affects: >=0.7.0
gotchaAll imports must come from submodules under 'qwak.core'. Direct imports like 'from qwak import ...' will fail.
fix
Use 'from qwak.core.{submodule} import {class}'.
affects: all
deprecatedQwakInferenceClient is actively maintained but some older methods like 'predict_async' may be deprecated. Always check the latest docs for method availability.
fix
Refer to official documentation for current API.
affects: >=0.6.0
gotchaAPI key authentication is required for most operations. Missing or invalid API key will raise an authentication error.
fix
Set the QWAK_API_KEY environment variable or pass it directly to QwakAuth.
affects: all
Upgrade
Version history
0.7.64latest on PyPI · released May 7, 2026
Audit
Dependencies
qwak-corerequiredThe library itself, not a separate dependency
Agent activity
24 hits · last 30 days
node
22
OpenAI (training)
1
Resources