Skip to content

Commit 8bf2290

Browse files
committed
Merge branch 'lusu/agentserver-core' into lusu/agentserver-af
2 parents ef8e67b + a7c1107 commit 8bf2290

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

sdk/ai/azure-ai-agentserver-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pip install azure-ai-agentserver-core
1111

1212
This is the core package for Azure AI Agent server. It hosts your agent as a container on the cloud.
1313

14-
You can talk to your agent using azure-ai-project sdk
14+
You can talk to your agent using azure-ai-project sdk.
1515

1616

1717
## Examples

sdk/ai/azure-ai-agentserver-core/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ exclude = [
4545
]
4646

4747
[tool.setuptools.dynamic]
48-
# read version from your module (see Step 2 file layout)
4948
version = { attr = "azure.ai.agentserver.core._version.VERSION" }
5049
readme = { file = ["README.md"], content-type = "text/markdown" }
5150

sdk/ai/azure-ai-agentserver-core/samples/bilingual_weekend_planner/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ def get_current_date() -> str:
299299
model=_chat_model(),
300300
)
301301

302+
# cSpell:disable
302303
SPANISH_WEEKEND_PLANNER = Agent(
303304
name="Planificador de fin de semana (Español)",
304305
instructions=(
@@ -320,6 +321,7 @@ def get_current_date() -> str:
320321
handoffs=[SPANISH_WEEKEND_PLANNER, ENGLISH_WEEKEND_PLANNER],
321322
model=_chat_model(),
322323
)
324+
# cSpell:enable
323325

324326

325327
def _root_span_name(provider: str) -> str:

0 commit comments

Comments
 (0)