@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
67 lines (66 loc) • 2.27 kB
TypeScript
/**
* Neynar API
* The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 3.115.0
* Contact: team@neynar.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface PromptDeploymentStreamRequest
*/
export interface PromptDeploymentStreamRequest {
/**
* Farcaster ID of the user
* @type {number}
* @memberof PromptDeploymentStreamRequest
*/
'fid': number;
/**
* Kubernetes deployment name
* @type {string}
* @memberof PromptDeploymentStreamRequest
*/
'name': string;
/**
* Optional Kubernetes namespace. If not provided, will query for the active namespace for the given FID.
* @type {string}
* @memberof PromptDeploymentStreamRequest
*/
'namespace'?: string;
/**
* Prompt string to send to the deployment
* @type {string}
* @memberof PromptDeploymentStreamRequest
*/
'prompt': string;
/**
* Optional conversation ID to continue an existing chat. If not provided, a new conversation will be created.
* @type {string}
* @memberof PromptDeploymentStreamRequest
*/
'conversation_id'?: string;
/**
* Optional Claude SDK session ID to resume an existing Claude Code session. Enables session-based conversation continuity.
* @type {string}
* @memberof PromptDeploymentStreamRequest
*/
'session_id'?: string;
/**
* System prompt variant to use. Defaults to stable if not provided.
* @type {string}
* @memberof PromptDeploymentStreamRequest
*/
'system_prompt_variant'?: PromptDeploymentStreamRequestSystemPromptVariantEnum;
}
export declare const PromptDeploymentStreamRequestSystemPromptVariantEnum: {
readonly Canary: "canary";
readonly Beta: "beta";
readonly Stable: "stable";
};
export type PromptDeploymentStreamRequestSystemPromptVariantEnum = typeof PromptDeploymentStreamRequestSystemPromptVariantEnum[keyof typeof PromptDeploymentStreamRequestSystemPromptVariantEnum];