Skip to content

Commit df4a3db

Browse files
committed
Fix docstring errors breaking poe gen-docs
pydoctor runs with warnings-as-errors: the bullet list needed a blank line before it, and the :func: reference must use the unqualified name since pydoctor relocates __all__ re-exports to the package page.
1 parent 284b982 commit df4a3db

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

temporalio/contrib/google_genai/_google_genai_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class GoogleGenAIPlugin(SimplePlugin):
3434
3535
This plugin registers the ``gemini_api_client_async_request`` activity
3636
using the provided ``genai.Client`` with real credentials. Workflows use
37-
:func:`~temporalio.contrib.google_genai.workflow.google_genai_client` to
37+
:func:`google_genai_client` to
3838
get an ``AsyncClient`` backed by a ``TemporalApiClient`` that routes all
3939
API calls through this activity.
4040

temporalio/contrib/google_genai/_temporal_api_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
on the worker side inside the activity.
77
88
This ensures:
9+
910
- No credential fetching or refreshing happens in the workflow.
1011
- No auth material (tokens, API keys) appears in Temporal event history.
1112
- The SDK's AFC (automatic function calling) loop runs in the workflow,

0 commit comments

Comments
 (0)