https://github.com/superlistapp/ex_speechly
Elixir gRPC client for Speechly
https://github.com/superlistapp/ex_speechly
Last synced: about 2 months ago
JSON representation
Elixir gRPC client for Speechly
- Host: GitHub
- URL: https://github.com/superlistapp/ex_speechly
- Owner: superlistapp
- Created: 2022-05-22T18:12:12.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-24T14:24:33.000Z (about 4 years ago)
- Last Synced: 2025-11-22T08:02:23.691Z (7 months ago)
- Language: Elixir
- Size: 128 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ExSpeechly
An elixir client implementation for the [Speechly gRPC API](https://github.com/speechly/api).
## Installation
The package can be installed by adding `ex_speechly` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:ex_speechly, github: "superlistapp/ex_speechly"}
]
end
```
Add the following configuration to your `config.exs`:
```elixir
config :ex_speechly,
api_key: "", # The api key found in the Speechly dashboard.
device_id: "", # A UUID identifying your elixir client.
project_id: "", # The project id found in the Speechly dashboard.
app_id: "", # The app id found in the Speechly dashboard.
host: "https://api.speechly.com:443" # Optional. Defaults to https://api.speechly.com:443
```