https://github.com/superlistapp/speechly_protox
Protox protobuffer elixir modules for Speechly
https://github.com/superlistapp/speechly_protox
Last synced: 12 months ago
JSON representation
Protox protobuffer elixir modules for Speechly
- Host: GitHub
- URL: https://github.com/superlistapp/speechly_protox
- Owner: superlistapp
- Created: 2022-05-22T18:02:30.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-13T09:40:50.000Z (about 4 years ago)
- Last Synced: 2025-06-22T01:58:28.629Z (12 months ago)
- Language: Elixir
- Size: 49.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SpeechlyProtox
This repository contains the generated [protox](https://hex.pm/packages/protox) modules for the [Speechly gRPC API](https://github.com/speechly/api).
## Installation
The package can be installed by adding `speechly_protox` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:speechly_protox, github: "superlistapp/speechly_protox"}
]
end
```
## Generate elixir modules from protobuf
```bash
MIX_ENV=prod mix protox.generate --output-path=./lib --include-path=./api/proto api/proto/speechly/slu/v1/slu.proto api/proto/speechly/slu/v1/wlu.proto api/proto/speechly/sal/v1/compiler.proto api/proto/speechly/identity/v2/identity.proto api/proto/speechly/identity/v2/identity_api.proto api/proto/speechly/config/v1/config_api.proto api/proto/speechly/analytics/v1/analytics.proto api/proto/speechly/analytics/v1/analytics_api.proto --multiple-files
```