Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Word search should accept array of words #15

Open
@Swimburger

Description

@Swimburger

Currently, the word search method accepts a single string, it should be an array of strings:

word = 'foo'
response = client.transcripts.word_search(
  transcript_id: transcript.id,
  words: word
)

It should be

word = 'foo'
response = client.transcripts.word_search(
  transcript_id: transcript.id,
  words: [word]
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    kind/bugSomething isn't workingtriage/confirmedIssue is well-defined and understood.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions