@@ -187,7 +187,7 @@ jobs:
187187
188188 - name : Generate Python SDK
189189 working-directory : client-sdks/openapi
190- run : make sdk OPEN=1
190+ run : make sdk OPEN=0
191191
192192 - name : Validate generated SDK
193193 working-directory : client-sdks/openapi
@@ -217,14 +217,14 @@ jobs:
217217
218218 - name : Install generated SDK
219219 run : |
220- echo "Reinstalling OpenAPI-generated SDK (ogx_open_client )..."
221- uv pip uninstall ogx-open- client || true
220+ echo "Reinstalling OpenAPI-generated SDK (ogx_client )..."
221+ uv pip uninstall ogx-client || true
222222
223223 # Install SDK using uv pip
224224 uv pip install -e client-sdks/openapi/sdks/python
225225
226226 echo "Verifying installation..."
227- uv run python -c "import ogx_open_client ; print(f'Installed: {ogx_open_client .__name__}')"
227+ uv run python -c "import ogx_client ; print(f'Installed: {ogx_client .__name__}')"
228228
229229 - name : Setup Ollama (for integration tests)
230230 if : runner.os == 'Linux'
@@ -242,7 +242,7 @@ jobs:
242242 || echo "::warning::Some integration tests failed - this may indicate SDK compatibility issues"
243243
244244 # Show which SDK is actually being used
245- uv run python -c "import ogx_open_client ; import inspect; print(f'SDK location: {inspect.getfile(ogx_open_client )}')"
245+ uv run python -c "import ogx_client ; import inspect; print(f'SDK location: {inspect.getfile(ogx_client )}')"
246246
247247 - name : Summary
248248 if : runner.os == 'Linux'
@@ -255,5 +255,5 @@ jobs:
255255 echo "✅ Integration tests executed (check logs for results)"
256256 echo ""
257257 echo "**Platform**: ${{ matrix.os }}"
258- echo "**Package**: ogx_open_client (OpenAPI-generated)"
258+ echo "**Package**: ogx_client (OpenAPI-generated)"
259259 } >> "$GITHUB_STEP_SUMMARY"
0 commit comments