Griptape/threads
@webframp/griptape/threadsv2026.08.29.1
01README
Griptape Cloud Threads — conversation threads and their messages
02Release Notes
2026.08.29.1
Added: Initial code-generated release of @webframp/griptape/threads with 7 methods covering the Griptape Cloud threads API surface.
03Models
@webframp/griptape/threadsv2026.08.29.1griptape/threads.ts
Global Arguments
| Argument | Type | Description |
|---|---|---|
| apiKey? | string | Griptape Cloud API key; overrides the GT_CLOUD_API_KEY environment variable. Wire with a vault.get(...) expression to source it from a vault. |
| baseUrl? | string | Griptape Cloud API base URL; overrides the GT_CLOUD_BASE_URL environment variable and the built-in default. |
fn list_threads(page?: number, page_size?: number, alias?: string, starts_with?: string, created_by?: string)
list operation
| Argument | Type | Description |
|---|---|---|
| page? | number | |
| page_size? | number | |
| alias? | string | |
| starts_with? | string | |
| created_by? | string |
fn create_thread(alias?: string, messages?: array, metadata?: unknown, name: string)
create operation
| Argument | Type | Description |
|---|---|---|
| alias? | string | |
| messages? | array | |
| metadata? | unknown | |
| name | string |
fn get_thread(thread_id: string)
get operation
| Argument | Type | Description |
|---|---|---|
| thread_id | string |
fn update_thread(thread_id: string, alias?: string, messages?: array, metadata?: unknown, name?: string)
update operation
| Argument | Type | Description |
|---|---|---|
| thread_id | string | |
| alias? | string | |
| messages? | array | |
| metadata? | unknown | |
| name? | string |
fn delete_thread(thread_id: string)
delete operation
| Argument | Type | Description |
|---|---|---|
| thread_id | string |
fn list_messages(thread_id: string, page?: number, page_size?: number)
list operation
| Argument | Type | Description |
|---|---|---|
| thread_id | string | |
| page? | number | |
| page_size? | number |
fn create_message(thread_id: string, input: string, metadata?: unknown, output: string)
create operation
| Argument | Type | Description |
|---|---|---|
| thread_id | string | |
| input | string | |
| metadata? | unknown | |
| output | string |
Resources
threads(infinite)— list operation
thread(infinite)— create operation
messages(infinite)— list operation
message(infinite)— create operation
04Stats
A
100 / 100
Downloads
0
Archive size
15.4 KB
- Has README or module doc2/2earned
- README has a code example1/1earned
- README is substantive1/1earned
- Most symbols documented1/1earned
- No slow types (deprecated)1/1earned
- Dependencies pass trust audit2/2earned
- Has description1/1earned
- Platform support declared (or universal)2/2earned
- License declared1/1earned
- Verified public repository2/2earned
05Platforms
06Labels