Skip to content

Feature/realtime punctuation #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 12, 2025
Merged
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
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2024 Oracle and/or its affiliates.
Copyright (c) 2024, 2025, Oracle and/or its affiliates.

The Universal Permissive License (UPL), Version 1.0

Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,23 @@ You can also choose to clone this git repo and install from source.
The home page for the OCI Speech Service can be found [here](https://www.oracle.com/artificial-intelligence/speech/).
The API reference for OCI Speech Service can be found [here](https://docs.oracle.com/en-us/iaas/api/#/en/speech/latest/).

Note that realtime speech URLs are distinct from the speech URLs mentioned in the above link. To obtain a realtime speech url, take a speech url, and replace 'speech' with realtime. Also replace https with wss.
Note that realtime speech URLs are distinct from the speech URLs mentioned in the above link. To obtain a realtime speech url, take a speech url, and replace 'speech' with realtime. Also replace https with wss.

For example, for the following speech url:

```https://speech.aiservice.af-johannesburg-1.oci.oraclecloud.com```
`https://speech.aiservice.af-johannesburg-1.oci.oraclecloud.com`

This is the corresponding realtime speech URL:

```wss://realtime.aiservice.af-johannesburg-1.oci.oraclecloud.com```
`wss://realtime.aiservice.af-johannesburg-1.oci.oraclecloud.com`

## Examples
We have an example here itself, it can be found in the [example-client](example-client/) directory.

We have an example here itself, it can be found in the [example-client](example-client/) directory.

## Development
Follow the instructions in the [Development Readme](ai-speech-realtime-sdk-web/README.md) to get started with local development/testing of the SDK code.

Follow the instructions in the [Development Readme](ai-speech-realtime-sdk-web/README.md) to get started with local development/testing of the SDK code.

## Contributing

Expand All @@ -46,7 +47,7 @@ Please consult the [security guide](./SECURITY.md) for our responsible security

## License

Copyright (c) 2024 Oracle and/or its affiliates.
Copyright (c) 2024, 2025, Oracle and/or its affiliates.

Released under the Universal Permissive License v1.0 as shown at
<https://oss.oracle.com/licenses/upl/>.
6 changes: 3 additions & 3 deletions ai-speech-realtime-sdk-web/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
** Copyright (c) 2024, Oracle and/or its affiliates.
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
*/
** Copyright (c) 2024, 2025, Oracle and/or its affiliates.
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
*/

import * as AIServiceSpeechRealtimeClient from "./src/ai-speech-realtime-web-client";
export * from "./src/ai-speech-realtime-web-client";
Expand Down
Loading