Skip to content

Commit 43f5613

Browse files
authored
Merge branch 'main' into adding-workflow
2 parents bfc0a34 + 747b7d8 commit 43f5613

File tree

114 files changed

+554
-40
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+554
-40
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build and Push Tutorial Agent
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
agent_path:
7+
description: "Path to the agent directory (e.g., examples/tutorials/10_agentic/00_base/000_hello_acp)"
8+
required: true
9+
type: string
10+
version_tag:
11+
description: "Version tag for the agent build (e.g., v1.0.0, latest)"
12+
required: true
13+
type: string
14+
default: "latest"
15+
16+
workflow_call:
17+
inputs:
18+
agent_path:
19+
description: "Path to the agent directory"
20+
required: true
21+
type: string
22+
version_tag:
23+
description: "Version tag for the agent build"
24+
required: true
25+
type: string
26+
default: "latest"

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.25"
2+
".": "0.4.26"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 34
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-24426221ca34bef99c2533d049fc93a3b28718229d79339ff4a6f613a4f44ef6.yml
3-
openapi_spec_hash: cb4a09c023345455749bfc45040951d6
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-c34c0577d9716c22554633ecb41d091675248d1385e9d1cc7c19479d55b56cb1.yml
3+
openapi_spec_hash: 3daaeab87b12b271ba2ee39e7dc166f2
44
config_hash: 6481ea6b42040f435dedcb00a98f35f8

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.4.26 (2025-10-21)
4+
5+
Full Changelog: [v0.4.25...v0.4.26](https://github.com/scaleapi/agentex-python/compare/v0.4.25...v0.4.26)
6+
7+
### Features
8+
9+
* **api:** api update ([0c1dedd](https://github.com/scaleapi/agentex-python/commit/0c1dedd0fecb05e3684f110cc589f2abe55acb97))
10+
* **api:** api update ([719dc74](https://github.com/scaleapi/agentex-python/commit/719dc74f7844e2a3c14e46996e353d9c632b8e0a))
11+
12+
13+
### Chores
14+
15+
* bump `httpx-aiohttp` version to 0.1.9 ([21c7921](https://github.com/scaleapi/agentex-python/commit/21c79210a0d65944fec5010fcc581a2d85fb94ab))
16+
317
## 0.4.25 (2025-10-10)
418

519
Full Changelog: [v0.4.24...v0.4.25](https://github.com/scaleapi/agentex-python/compare/v0.4.24...v0.4.25)

examples/tutorials/10_agentic/00_base/040_other_sdks/project/acp.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
import os
24
import json
35
from typing import Dict, List, Optional

examples/tutorials/10_agentic/00_base/080_batch_events/dev.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
"metadata": {},
88
"outputs": [],
99
"source": [
10+
"from __future__ import annotations\n",
11+
"\n",
1012
"from agentex import Agentex\n",
1113
"\n",
1214
"client = Agentex(base_url=\"http://localhost:5003\")"

examples/tutorials/10_agentic/00_base/090_multi_agent_non_temporal/project/orchestrator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Orchestrator Agent - Coordinates the multi-agent content creation workflow
2+
from __future__ import annotations
23

34
import sys
45
import json

examples/tutorials/10_agentic/00_base/090_multi_agent_non_temporal/project/state_machines/content_workflow.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# ruff: noqa: ARG002
2+
from __future__ import annotations
3+
24
import json
35
import asyncio
46
from enum import Enum

examples/tutorials/10_agentic/10_temporal/020_state_machine/project/workflows/deep_research/waiting_for_user_input.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from typing import override
24

35
from temporalio import workflow

examples/tutorials/10_agentic/10_temporal/050_agent_chat_guardrails/project/workflow.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# ruff: noqa: ARG001
2+
from __future__ import annotations
3+
24
import os
35
import json
46
from typing import Any, Dict, List, override

0 commit comments

Comments
 (0)