Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ generation:
oAuth2ClientCredentialsEnabled: true
oAuth2PasswordEnabled: true
python:
version: 0.34.9
version: 0.34.10
additionalDependencies:
dev: {}
main: {}
Expand Down
12 changes: 6 additions & 6 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ speakeasyVersion: 1.552.0
sources:
SyllableSDK:
sourceNamespace: syllable-sdk-oas
sourceRevisionDigest: sha256:0e68a0cfe16a832830c2a423752e901164a94e776a4033d1009273ca89b89bf7
sourceBlobDigest: sha256:69469a881395d822c7d826dcc21df9c5c41802b8f55a89f3a3347acf0194797e
sourceRevisionDigest: sha256:e6cac02522c2ec36d8a54a2abbbb3f715cc9421da46fe31ea521027913ec3270
sourceBlobDigest: sha256:495652b18aee7e38316ea3db3021061846e0b3f447d3e9c704c7feedf7e66edf
tags:
- latest
- speakeasy-sdk-regen-1748454732
- speakeasy-sdk-regen-1748474581
- 0.0.2
targets:
syllable-sdk:
source: SyllableSDK
sourceNamespace: syllable-sdk-oas
sourceRevisionDigest: sha256:0e68a0cfe16a832830c2a423752e901164a94e776a4033d1009273ca89b89bf7
sourceBlobDigest: sha256:69469a881395d822c7d826dcc21df9c5c41802b8f55a89f3a3347acf0194797e
sourceRevisionDigest: sha256:e6cac02522c2ec36d8a54a2abbbb3f715cc9421da46fe31ea521027913ec3270
sourceBlobDigest: sha256:495652b18aee7e38316ea3db3021061846e0b3f447d3e9c704c7feedf7e66edf
codeSamplesNamespace: code-samples-python-sdk-syllable-sdk-oas-code-samples
codeSamplesRevisionDigest: sha256:98809fd692256a5a74e5bca062c1f6839c711de759241d9dcfac57cf94c8904a
codeSamplesRevisionDigest: sha256:0770dfbb234a84d3e5cc831909713f0cfea16511e6697edcf64dce56b186fd95
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1126,4 +1126,14 @@ Based on:
### Generated
- [python v0.34.9] .
### Releases
- [PyPI v0.34.9] https://pypi.org/project/syllable-sdk/0.34.9 - .
- [PyPI v0.34.9] https://pypi.org/project/syllable-sdk/0.34.9 - .

## 2025-05-28 23:22:43
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.552.0 (2.610.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.34.10] .
### Releases
- [PyPI v0.34.10] https://pypi.org/project/syllable-sdk/0.34.10 - .
10 changes: 8 additions & 2 deletions codeSamples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ actions:
res = ss_client.agents.create(request={
"name": "Weather agent",
"description": "Agent for answering questions about weather.",
"label": "Information",
"labels": [
"Information",
"Weather",
],
"type": "ca_v1",
"prompt_id": 1,
"custom_message_id": 1,
Expand Down Expand Up @@ -91,7 +94,10 @@ actions:
res = ss_client.agents.update(request={
"name": "Weather agent",
"description": "Agent for answering questions about weather.",
"label": "Information",
"labels": [
"Information",
"Weather",
],
"type": "ca_v1",
"prompt_id": 1,
"custom_message_id": 1,
Expand Down
3 changes: 2 additions & 1 deletion docs/models/agentcreate.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Request model to create an agent.
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `name` | *str* | :heavy_check_mark: | The agent name | Weather agent |
| `description` | *OptionalNullable[str]* | :heavy_minus_sign: | The agent description | Agent for answering questions about weather. |
| `label` | *OptionalNullable[str]* | :heavy_minus_sign: | The agent label | Information |
| ~~`label`~~ | *OptionalNullable[str]* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.<br/><br/>The agent label (DEPRECATED - use labels instead.) | Information |
| `labels` | List[*str*] | :heavy_minus_sign: | The agent labels | [<br/>"Information",<br/>"Weather"<br/>] |
| `type` | *str* | :heavy_check_mark: | The agent type. Must be "ca_v1" currently. | ca_v1 |
| `prompt_id` | *int* | :heavy_check_mark: | ID of the prompt associated with the agent | 1 |
| `custom_message_id` | *int* | :heavy_check_mark: | Internal ID of the custom message that should be delivered at the beginning of a conversation with the agent | 1 |
Expand Down
1 change: 1 addition & 0 deletions docs/models/agentproperties.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Names of agent fields supported for filtering/sorting on list endpoint.
| `NAME_EXACT` | name_exact |
| `DESCRIPTION` | description |
| `LABEL` | label |
| `LABELS` | labels |
| `NAME_DESCRIPTION` | name_description |
| `TYPE` | type |
| `TIMEZONE` | timezone |
Expand Down
Loading