Skip to content

Commit 53cfd70

Browse files
author
aadamgough
committed
updated docs
1 parent 59aca33 commit 53cfd70

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

apps/docs/components/icons.tsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4575,3 +4575,22 @@ export function FirefliesIcon(props: SVGProps<SVGSVGElement>) {
45754575
</svg>
45764576
)
45774577
}
4578+
4579+
export function BedrockIcon(props: SVGProps<SVGSVGElement>) {
4580+
return (
4581+
<svg {...props} viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'>
4582+
<defs>
4583+
<linearGradient id='bedrock_gradient' x1='80%' x2='20%' y1='20%' y2='80%'>
4584+
<stop offset='0%' stopColor='#6350FB' />
4585+
<stop offset='50%' stopColor='#3D8FFF' />
4586+
<stop offset='100%' stopColor='#9AD8F8' />
4587+
</linearGradient>
4588+
</defs>
4589+
<path
4590+
d='M13.05 15.513h3.08c.214 0 .389.177.389.394v1.82a1.704 1.704 0 011.296 1.661c0 .943-.755 1.708-1.685 1.708-.931 0-1.686-.765-1.686-1.708 0-.807.554-1.484 1.297-1.662v-1.425h-2.69v4.663a.395.395 0 01-.188.338l-2.69 1.641a.385.385 0 01-.405-.002l-4.926-3.086a.395.395 0 01-.185-.336V16.3L2.196 14.87A.395.395 0 012 14.555L2 14.528V9.406c0-.14.073-.27.192-.34l2.465-1.462V4.448c0-.129.062-.249.165-.322l.021-.014L9.77 1.058a.385.385 0 01.407 0l2.69 1.675a.395.395 0 01.185.336V7.6h3.856V5.683a1.704 1.704 0 01-1.296-1.662c0-.943.755-1.708 1.685-1.708.931 0 1.685.765 1.685 1.708 0 .807-.553 1.484-1.296 1.662v2.311a.391.391 0 01-.389.394h-4.245v1.806h6.624a1.69 1.69 0 011.64-1.313c.93 0 1.685.764 1.685 1.707 0 .943-.754 1.708-1.685 1.708a1.69 1.69 0 01-1.64-1.314H13.05v1.937h4.953l.915 1.18a1.66 1.66 0 01.84-.227c.931 0 1.685.764 1.685 1.707 0 .943-.754 1.708-1.685 1.708-.93 0-1.685-.765-1.685-1.708 0-.346.102-.668.276-.937l-.724-.935H13.05v1.806zM9.973 1.856L7.93 3.122V6.09h-.778V3.604L5.435 4.669v2.945l2.11 1.36L9.712 7.61V5.334h.778V7.83c0 .136-.07.263-.184.335L7.963 9.638v2.081l1.422 1.009-.446.646-1.406-.998-1.53 1.005-.423-.66 1.605-1.055v-1.99L5.038 8.29l-2.26 1.34v1.676l1.972-1.189.398.677-2.37 1.429V14.3l2.166 1.258 2.27-1.368.397.677-2.176 1.311V19.3l1.876 1.175 2.365-1.426.398.678-2.017 1.216 1.918 1.201 2.298-1.403v-5.78l-4.758 2.893-.4-.675 5.158-3.136V3.289L9.972 1.856zM16.13 18.47a.913.913 0 00-.908.92c0 .507.406.918.908.918a.913.913 0 00.907-.919.913.913 0 00-.907-.92zm3.63-3.81a.913.913 0 00-.908.92c0 .508.406.92.907.92a.913.913 0 00.908-.92.913.913 0 00-.908-.92zm1.555-4.99a.913.913 0 00-.908.92c0 .507.407.918.908.918a.913.913 0 00.907-.919.913.913 0 00-.907-.92zM17.296 3.1a.913.913 0 00-.907.92c0 .508.406.92.907.92a.913.913 0 00.908-.92.913.913 0 00-.908-.92z'
4591+
fill='url(#bedrock_gradient)'
4592+
fillRule='nonzero'
4593+
/>
4594+
</svg>
4595+
)
4596+
}

apps/docs/content/docs/en/tools/google_vault.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ Create an export in a matter
3131
| `corpus` | string | Yes | Data corpus to export \(MAIL, DRIVE, GROUPS, HANGOUTS_CHAT, VOICE\) |
3232
| `accountEmails` | string | No | Comma-separated list of user emails to scope export |
3333
| `orgUnitId` | string | No | Organization unit ID to scope export \(alternative to emails\) |
34+
| `startTime` | string | No | Start time for date filtering \(ISO 8601 format, e.g., 2024-01-01T00:00:00Z\) |
35+
| `endTime` | string | No | End time for date filtering \(ISO 8601 format, e.g., 2024-12-31T23:59:59Z\) |
36+
| `terms` | string | No | Search query terms to filter exported content |
3437

3538
#### Output
3639

@@ -91,6 +94,10 @@ Create a hold in a matter
9194
| `corpus` | string | Yes | Data corpus to hold \(MAIL, DRIVE, GROUPS, HANGOUTS_CHAT, VOICE\) |
9295
| `accountEmails` | string | No | Comma-separated list of user emails to put on hold |
9396
| `orgUnitId` | string | No | Organization unit ID to put on hold \(alternative to accounts\) |
97+
| `terms` | string | No | Search terms to filter held content \(for MAIL and GROUPS corpus\) |
98+
| `startTime` | string | No | Start time for date filtering \(ISO 8601 format, for MAIL and GROUPS corpus\) |
99+
| `endTime` | string | No | End time for date filtering \(ISO 8601 format, for MAIL and GROUPS corpus\) |
100+
| `includeSharedDrives` | boolean | No | Include files in shared drives \(for DRIVE corpus\) |
94101

95102
#### Output
96103

apps/docs/content/docs/en/tools/translate.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ Send a chat completion request to any supported LLM provider
5353
| `vertexProject` | string | No | Google Cloud project ID for Vertex AI |
5454
| `vertexLocation` | string | No | Google Cloud location for Vertex AI \(defaults to us-central1\) |
5555
| `vertexCredential` | string | No | Google Cloud OAuth credential ID for Vertex AI |
56+
| `bedrockAccessKeyId` | string | No | AWS Access Key ID for Bedrock |
57+
| `bedrockSecretKey` | string | No | AWS Secret Access Key for Bedrock |
58+
| `bedrockRegion` | string | No | AWS region for Bedrock \(defaults to us-east-1\) |
5659

5760
#### Output
5861

0 commit comments

Comments
 (0)