Skip to content

Commit f3dead8

Browse files
authored
Updates
1 parent 8be3e4e commit f3dead8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/gemini/python/docs-agent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ To populate a new vector database:
374374
375375
The command takes documents under the `inputs` fields (specified in your
376376
`config.yaml` file), splits the documents into small text chunk files, and
377-
stores them in the `output_path` direcoty.
377+
stores them in the `output_path` directory.
378378
379379
3. Create and populate a new vector database:
380380

examples/gemini/python/docs-agent/apps_script/drive_to_markdown.gs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function convertDriveFolder(folderName, outputFolderName="", indexFile="") {
7575
while (myfiles.hasNext()) {
7676
var myfile = myfiles.next();
7777
var ftype = myfile.getMimeType();
78-
// If this is a shorcut, retrieve the target file
78+
// If this is a shortcut, retrieve the target file
7979
if (ftype == "application/vnd.google-apps.shortcut") {
8080
var fid = myfile.getTargetId();
8181
var myfile = DriveApp.getFileById(fid);
@@ -105,7 +105,7 @@ function convertDriveFolder(folderName, outputFolderName="", indexFile="") {
105105
var furl = myfile.getUrl();
106106
var fcreate = myfile.getDateCreated();
107107

108-
//Function returns an array, assign each array value to seperate variables
108+
//Function returns an array, assign each array value to separate variables
109109
var backup_results = returnBackupHash(sheet, "Backup", fid, start_data_row, 1, 9, 3);
110110
if (backup_results != undefined && backup_results[0] != "no_results") {
111111
var backup_fid = backup_results[0];
@@ -229,7 +229,7 @@ function convertDriveFolder(folderName, outputFolderName="", indexFile="") {
229229
status,
230230
];
231231
sheet.appendRow(metadata);
232-
// Return final row to inserRichText into correct rows
232+
// Return final row to insertRichText into correct rows
233233
row_number = sheet.getLastRow();
234234
insertRichText(sheet, original_chip, "C", row_number);
235235
insertRichText(sheet, md_chip, "E", row_number);

examples/gemini/python/docs-agent/apps_script/gmail_to_markdown.gs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function exportEmailsToMarkdown(search, folderName) {
6666
let md5_hash = Utilities.computeDigest(Utilities.DigestAlgorithm.MD5,hash_content,
6767
Utilities.Charset.US_ASCII);
6868
let hash_str = byteToStr(md5_hash);
69-
//Function returns an array, assign each array value to seperate variables. For emails, only need to retrieve
69+
//Function returns an array, assign each array value to separate variables. For emails, only need to retrieve
7070
// backup markdown ids
7171
var backup_results = returnBackupHash(sheet, "Backup", hash_str, start_data_row, 7, 4, 5);
7272
if (backup_results != undefined && backup_results[0] != "no_results") {

examples/gemini/python/docs-agent/docs/cli-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ agent helpme <REQUEST> --file <PATH_TO_FILE>
176176
```
177177

178178
Replace `REQUEST` with a prompt and `PATH_TO_FILE` with a file's
179-
absolure or relative path, for example:
179+
absolute or relative path, for example:
180180

181181
```sh
182182
agent helpme write comments for this C++ file? --file ../my-project/test.cc

0 commit comments

Comments
 (0)