@gpt-platform/client 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +177 -1
- package/dist/index.d.ts +177 -1
- package/dist/index.js +202 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +202 -1
- package/dist/index.mjs.map +1 -1
- package/llms.txt +4 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -938,6 +938,7 @@ plan tier, vanity slug, and storage spending cap
|
|
|
938
938
|
- `getThreadsSearch()` - Full-text search threads by title or context summary within the actor's accessible workspace
|
|
939
939
|
- `postThreads()` - Create a new conversation thread scoped to a tenant, workspace, and user
|
|
940
940
|
- `postThreadsActive()` - Return the current user's active thread for their workspace, creating a new one if none exists or the existing thread has expired (>24h inactive)
|
|
941
|
+
- `postThreadsByIdComplete()` - Trigger AI inference on an existing thread without providing new user message content
|
|
941
942
|
- `postThreadsByIdExport()` - Export thread with messages to JSON, Markdown, or plain text format
|
|
942
943
|
- `postThreadsByIdFork()` - Fork a thread by cloning it with all its messages
|
|
943
944
|
- `postThreadsByIdMessages()` - Submit a user message to a thread and receive the AI response synchronously
|
|
@@ -1021,6 +1022,9 @@ raw preferences map
|
|
|
1021
1022
|
- `getVoiceTranscription-results()` - /voice/transcription-results operation on voice_transcription_result resource
|
|
1022
1023
|
- `getVoiceTranscription-resultsById()` - /voice/transcription-results/:id operation on voice_transcription_result resource
|
|
1023
1024
|
- `getVoiceTranscription-resultsSessionBySessionId()` - List transcription results for a voice session
|
|
1025
|
+
- `postVoiceTranscription-results()` - /voice/transcription-results operation on voice_transcription_result resource
|
|
1026
|
+
- `patchVoiceTranscription-resultsById()` - Correct or annotate a transcript's text, segments, or metadata.
|
|
1027
|
+
- `deleteVoiceTranscription-resultsById()` - /voice/transcription-results/:id operation on voice_transcription_result resource
|
|
1024
1028
|
|
|
1025
1029
|
## Watcher claim
|
|
1026
1030
|
|
package/package.json
CHANGED