-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsafety.ts
66 lines (55 loc) · 1.75 KB
/
safety.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import * as Core from '../core';
import * as SafetyAPI from './safety';
import * as Shared from './shared';
export class Safety extends APIResource {
runShield(params: SafetyRunShieldParams, options?: Core.RequestOptions): Core.APIPromise<RunSheidResponse> {
const { 'X-LlamaStack-ProviderData': xLlamaStackProviderData, ...body } = params;
return this._client.post('/safety/run_shield', {
body,
...options,
headers: {
...(xLlamaStackProviderData != null ?
{ 'X-LlamaStack-ProviderData': xLlamaStackProviderData }
: undefined),
...options?.headers,
},
});
}
}
export interface RunSheidResponse {
violation?: RunSheidResponse.Violation;
}
export namespace RunSheidResponse {
export interface Violation {
metadata: Record<string, boolean | number | string | Array<unknown> | unknown | null>;
violation_level: 'info' | 'warn' | 'error';
user_message?: string;
}
}
export interface SafetyRunShieldParams {
/**
* Body param:
*/
messages: Array<
Shared.UserMessage | Shared.SystemMessage | Shared.ToolResponseMessage | Shared.CompletionMessage
>;
/**
* Body param:
*/
params: Record<string, boolean | number | string | Array<unknown> | unknown | null>;
/**
* Body param:
*/
shield_type: string;
/**
* Header param: JSON-encoded provider data which will be made available to the
* adapter servicing the API
*/
'X-LlamaStack-ProviderData'?: string;
}
export namespace Safety {
export import RunSheidResponse = SafetyAPI.RunSheidResponse;
export import SafetyRunShieldParams = SafetyAPI.SafetyRunShieldParams;
}