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
Description
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]
)