Skip to content

Commit 51d7007

Browse files
committed
docs: update firestore session service dependency versions and artifact identifiers
1 parent e99ff92 commit 51d7007

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

contrib/firestore-session-service/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ To integrate this Firestore session service into your ADK project, add the follo
1414
<dependency>
1515
<groupId>com.google.adk</groupId>
1616
<artifactId>google-adk</artifactId>
17-
<version>1.0.1-rc.1-SNAPSHOT</version>
17+
<version>1.0.0</version>
1818
</dependency>
1919
<!-- Firestore Session Service -->
2020
<dependency>
2121
<groupId>com.google.adk</groupId>
2222
<artifactId>google-adk-firestore-session-service</artifactId>
23-
<version>1.0.1-rc.1-SNAPSHOT</version>
23+
<version>1.0.0</version>
2424
</dependency>
2525
</dependencies>
2626
```
2727

2828
```gradle
2929
dependencies {
3030
// ADK Core
31-
implementation 'com.google.adk:google-adk:1.0.1-rc.1-SNAPSHOT'
31+
implementation 'com.google.adk:google-adk:1.0.0'
3232
// Firestore Session Service
33-
implementation 'com.google.adk:google-adk-firestore-session-service:1.0.1-rc.1-SNAPSHOT'
33+
implementation 'com.google.adk:google-adk-firestore-session-service:1.0.0'
3434
}
3535
```
3636

@@ -42,11 +42,11 @@ Sample Property Settings:
4242

4343
```properties
4444
# Firestore collection name for storing session data
45-
adk.firestore.collection.name=adk-session
45+
firebase.root.collection.name=adk-session
4646
# Google Cloud Storage bucket name for artifact storage
47-
adk.gcs.bucket.name=your-gcs-bucket-name
47+
gcs.adk.bucket.name=your-gcs-bucket-name
4848
#stop words for keyword extraction
49-
adk.stop.words=a,about,above,after,again,against,all,am,an,and,any,are,aren't,as,at,be,because,been,before,being,below,between,both,but,by,can't,cannot,could,couldn't,did,didn't,do,does,doesn't,doing,don't,down,during,each,few,for,from,further,had,hadn't,has,hasn't,have,haven't,having,he,he'd,he'll,he's,her,here,here's,hers,herself,him,himself,his,how,i,i'd,i'll,i'm,i've,if,in,into,is
49+
keyword.extraction.stopwords=a,about,above,after,again,against,all,am,an,and,any,are,aren't,as,at,be,because,been,before,being,below,between,both,but,by,can't,cannot,could,couldn't,did,didn't,do,does,doesn't,doing,don't,down,during,each,few,for,from,further,had,hadn't,has,hasn't,have,haven't,having,he,he'd,he'll,he's,her,here,here's,hers,herself,him,himself,his,how,i,i'd,i'll,i'm,i've,if,in,into,is
5050
```
5151
5252
Then, you can use the `FirestoreDatabaseRunner` to start your ADK application with Firestore session management:

0 commit comments

Comments
 (0)