Skip to content
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.3.3

- Made `timestamp` and `userId` fields optional in `Transcript`

# 0.3.0

- Project renamed to `pipecat-client-android`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ packages.) The base `RTVIClient` has no transport included.
Add the following dependency to your `build.gradle` file:

```
implementation "ai.pipecat:client:0.3.0"
implementation "ai.pipecat:client:0.3.3"
```

Then instantiate the `RTVIClient` from your code, specifying the backend `baseUrl` and transport.
Expand Down
2 changes: 1 addition & 1 deletion pipecat-client-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ publishing {
register<MavenPublication>("release") {
groupId = "ai.pipecat"
artifactId = "client"
version = "0.3.0"
version = "0.3.3"

pom {
name.set("Pipecat Client")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import kotlinx.serialization.Serializable
data class Transcript(
val text: String,
val final: Boolean,
val timestamp: String,
val timestamp: String? = null,
@SerialName("user_id")
val userId: String
val userId: String? = null
)