Skip to content
Open
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
18 changes: 12 additions & 6 deletions .fern/replay.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,3 @@
**/*.rs.bk
.DS_Store
*.swp

# Output of `elevenlabs generate-skills`, run here while testing the command.
/skills
# Scratch project created by the scripts/ verification walkthrough.
/.verify-project
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elevenlabs-cli"
version = "1.1.0"
version = "1.2.0"
edition = "2021"
description = "CLI for the ElevenLabs API"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion cli/elevenlabs/openapi0.json

Large diffs are not rendered by default.

11 changes: 4 additions & 7 deletions dist-workspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,10 @@ targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "aarch64-unknown
pr-run-mode = "plan"
# Publish jobs to run (npm publishing deferred until pipeline is validated)
publish-jobs = ["homebrew"]
# Prereleases must not reach brew/scoop. A tap has no prerelease channel — a
# published manifest simply *is* the version `brew install elevenlabs` and
# `scoop install elevenlabs` hand out — so tagging a 1.1.0-rc.1 would serve an
# RC to every stable user. This was `true` during the alpha, when the taps were
# the distribution channel for testers and there was no stable release to
# clobber. Stable releases are unaffected either way; only prereleases are.
publish-prereleases = false
# Alpha testers install via brew/scoop before public launch, so prereleases
# must actually publish. A tap/bucket has no prerelease channel: whatever is
# published is what `brew install` serves.
publish-prereleases = true
# Don't overwrite release.yml on `dist init` (preserves customizations)
allow-dirty = ["ci"]
# The archive format to use for windows builds (defaults .zip)
Expand Down
2 changes: 1 addition & 1 deletion elevenlabs-sdk/src/api/resources/agents/llm/agents_llm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl LlmClient {
pub async fn list(
&self,
options: Option<RequestOptions>,
) -> Result<LlmListResponseModelInput, ApiError> {
) -> Result<LlmListResponseModel, ApiError> {
self.http_client
.execute_request(Method::GET, "v1/convai/llm/list", None, None, options)
.await
Expand Down
4 changes: 3 additions & 1 deletion elevenlabs-sdk/src/api/resources/agents/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ impl AgentsClient {
/// * `archived` - Filter agents by archived status
/// * `show_only_owned_agents` - If set to true, the endpoint will omit any agents that were shared with you by someone else and include only the ones you own. Deprecated: use created_by_user_id instead.
/// * `created_by_user_id` - Filter agents by creator user ID. When set, only agents created by this user are returned. Takes precedence over show_only_owned_agents. Use '@me' to refer to the authenticated user.
/// * `tags` - Filter agents by tag. Repeat the parameter to match any of several tags.
/// * `sort_direction` - The direction to sort the results
/// * `sort_by` - The field to sort the results by
/// * `cursor` - Used for fetching next page. Cursor is returned in the response.
Expand Down Expand Up @@ -388,10 +389,10 @@ impl AgentsClient {
/// archived: Some(true),
/// show_only_owned_agents: Some(true),
/// created_by_user_id: Some("created_by_user_id".to_string()),
/// tags: vec![Some("tags".to_string())],
/// sort_direction: Some(SortDirection::Asc),
/// sort_by: Some(AgentSortBy::Name),
/// cursor: Some("cursor".to_string()),
/// ..Default::default()
/// },
/// None,
/// )
Expand All @@ -417,6 +418,7 @@ impl AgentsClient {
request.show_only_owned_agents.clone(),
)
.string("created_by_user_id", request.created_by_user_id.clone())
.string_array("tags", request.tags.clone())
.serialize("sort_direction", request.sort_direction.clone())
.serialize("sort_by", request.sort_by.clone())
.string("cursor", request.cursor.clone())
Expand Down
Loading
Loading