Async Python client library for the Coworkers chatbot API.
Project description
coworkers_client
Standalone async Python client library for the Coworkers chatbot API.
The PyPI distribution name is coworkers_client. The import package is also coworkers_client.
Testing With Injected HTTP Seams
CoworkersChatbot can be constructed with either a caller-managed http_client or a low-level transport.
http_client=accepts anhttpx.AsyncClientand stays caller-owned.await chatbot.close()will not close it.transport=accepts anhttpxasync transport and is wrapped in an internalhttpx.AsyncClient.await chatbot.close()will close that internal client.- Passing both
http_clientandtransportis rejected withValueError. retry_policy=accepts aCoworkersRetryPolicyfor deterministic tests or bounded retries. When omitted, the client keeps the default 3-attempt retry behavior for transient503/504responses andhttpx.ReadTimeout/httpx.ConnectTimeoutwith 10-20 second jitter.
Example with httpx.MockTransport:
import httpx
from coworkers_client import CoworkersChatbot, CoworkersRetryPolicy
async def handler(request: httpx.Request) -> httpx.Response:
return httpx.Response(
200,
request=request,
json={
"discussionID": 42,
"userInfo": {"userToken": "test-user"},
"messages": [
{
"timestamp": 123,
"message": {"context": {}, "text": "mocked reply"},
}
],
},
)
transport = httpx.MockTransport(handler)
chatbot = CoworkersChatbot(
url="https://chatbot.example",
transport=transport,
retry_policy=CoworkersRetryPolicy.fixed_delay(0.0),
)
response = await chatbot.send_message("test-user", "hello")
assert response.get_text() == "mocked reply"
await chatbot.close()
Disable retries entirely for one-shot failure assertions:
from coworkers_client import CoworkersChatbot, CoworkersRetryPolicy
chatbot = CoworkersChatbot(
url="https://chatbot.example",
retry_policy=CoworkersRetryPolicy.disabled(),
)
CoworkersDiscussion also exposes deterministic test seams:
user_token_factory=lets tests supply predictable generated tokens without patchinguuid.restart(user_token=...)lets tests force a specific token for restart scenarios.start_dialog(...)now returns the underlyingCoworkersResponseand updates the wrapper state from that response.
send_start_discussion(...) also accepts caller-provided scalar context values. They are serialized with the same payload shape as send_message(...) and are available in the initial chatbot response when the service supports them.
Consumer fakes and adapters can use the public ChatbotTransport protocol instead of importing from a private module:
from collections.abc import Mapping
from coworkers_client import ChatbotTransport, CoworkersDiscussion, CoworkersResponse
class FakeTransport:
def __init__(self, response: CoworkersResponse) -> None:
self.response = response
async def send_start_discussion(
self,
user_token: str,
context: Mapping[str, object] | None = None,
) -> CoworkersResponse:
return self.response
async def send_message(
self,
user_token: str,
text: str,
context: Mapping[str, object] | None = None,
) -> CoworkersResponse:
return self.response
async def start_dialog(
self,
user_token: str,
dialog_id: int,
context: Mapping[str, object] | None = None,
) -> CoworkersResponse:
return self.response
async def send_goals(self, user_token: str, goals: list[str]) -> dict[str, object]:
return {"goals": goals}
prepared_response = CoworkersResponse()
prepared_response.load(
{
"discussionID": 42,
"userInfo": {"userToken": "test-user"},
"messages": [],
}
)
transport: ChatbotTransport = FakeTransport(prepared_response)
discussion = CoworkersDiscussion(transport, user_token="test-user")
The stable import paths are coworkers_client.transport.ChatbotTransport and coworkers_client.ChatbotTransport.
Optional Event Endpoint
CoworkersChatbot.send_event(...) sends a generic event to POST /chat-api/v1/add-event.
- It accepts
event_type,severity,subject,message, and optionaldetails. - It always includes the current sender
userToken, includesinstanceIdwhen the client was configured with one, and posts the event fields inside the API's nestedeventobject. - It returns
None. - Failures are warning-only for this method, because not every live chatbot exposes the optional event endpoint.
- Severity is normalized to lowercase in the outbound payload to match the live Mailbot contract.
CoworkersChatbot.get_discussion(..., events=True) includes typed DiscussionEvent entries on the returned Discussion, and CoworkersChatbot.get_discussion_events(user_token) returns that event list directly for consumer assertions.
Example:
events = await chatbot.get_discussion_events(response.user_token)
assert any(event.subject == "send-event-subject" for event in events)
Error Handling
Public async client methods raise library-defined exceptions instead of exposing raw transport or decode errors directly.
CoworkersClientError: base class for all public client failuresCoworkersRequestError: request failed before a valid API response could be processedCoworkersTimeoutError: request timed outCoworkersHttpError: API returned an HTTP error responseCoworkersResponseError: response body could not be decoded or did not match the expected payload shape
Each custom exception preserves the original underlying error as its cause, so callers can still inspect exc.__cause__ for the originating httpx or decode exception when needed.
Development
- Install
uv - Sync dependencies:
uv sync --group dev - Run all tests:
make pytest - Run unit tests only:
make pytest-unit - Run live integration tests only:
make pytest-integration - Run coverage for unit + integration suites:
make coverage - Run Ruff:
make ruff - Run Pyright:
make pyright - Build the package:
make build
Release
Maintainers publish this package through the GitLab tag pipeline.
- The release tag must be
vX.Y.ZorX.Y.Z. - The tag pipeline rewrites
[project].versionfromCI_COMMIT_TAG, builds the package, validates the artifacts, and uploads them to PyPI. - The publish job requires the
PYPI_TOKENCI variable. It is used as a PyPI API token withtwine.
Local release validation:
uv sync --group dev
make ruff
make pyright
make coverage
make pytest-integration
make clean update-version build check-wheel check-dist RELEASE_TAG=v0.1.0
The CI publish job runs make publish after the release build artifacts pass validation.
Live Integration Configuration
Live chatbot tests use the committed Python config in tests/integration_config.py.
- Base URL:
https://mailbot.bot.daktela.com instance_id:1dialog_id:1
The UI URL is https://mailbot.bot.daktela.com/#/, but the client must use the normalized API base origin without the #/ fragment for HTTP requests.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file coworkers_client-0.0.2.tar.gz.
File metadata
- Download URL: coworkers_client-0.0.2.tar.gz
- Upload date:
- Size: 57.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53748c3f15a33681566171e2af6796cde939e2bbcaca0567ca21a7b5004f6f62
|
|
| MD5 |
cc91c6f4f15a47e2e9ca65022c45d1c7
|
|
| BLAKE2b-256 |
23fba934d2a6854c91746622b72f85920192c892c00c2283eb39d3aec92dc9e1
|
File details
Details for the file coworkers_client-0.0.2-py3-none-any.whl.
File metadata
- Download URL: coworkers_client-0.0.2-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2c18bebd41823db5668dbe61e0772f35989934f3ac85b8aa918694ce2fc91c0
|
|
| MD5 |
7e087911dd13d402bc17a68b869a541d
|
|
| BLAKE2b-256 |
94e3d995a5f7d2ddad6d56eca55298a4a46c658f16753d5866a0c9c02986aa3e
|