Vana SDK - v2.2.2
    Preparing search index...

    Variable SERVER_PATHSConst

    SERVER_PATHS: {
        operations: "/api/v1/operations";
        getOperation: (operationId: string) => string;
        cancelOperation: (operationId: string) => string;
        identity: "/api/v1/identity";
        downloadArtifact: "/api/v1/artifacts/download";
        listArtifacts: (operationId: string) => string;
    } = ...

    Personal Server API endpoint paths.

    Type Declaration

    • Readonlyoperations: "/api/v1/operations"

      Create a new operation

    • ReadonlygetOperation: (operationId: string) => string

      Get operation status by ID

    • ReadonlycancelOperation: (operationId: string) => string

      Cancel a running operation

    • Readonlyidentity: "/api/v1/identity"

      Get user identity

    • ReadonlydownloadArtifact: "/api/v1/artifacts/download"

      Download an artifact file

    • ReadonlylistArtifacts: (operationId: string) => string

      List artifacts for an operation

    These paths are extracted from the OpenAPI spec to ensure consistency between the SDK and the server implementation. All paths are relative to the personal server base URL.