You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that you can also use typed objects to define your prompt. Some of the types used to do this (`Content`, `Part`) are from the Gen AI SDK (`@google/genai`).
73
+
74
+
```typescript
75
+
import { Prompt } from '@google-cloud/agentplatform';
76
+
import { Part, Content } from '@google/genai';
77
+
78
+
const prompt: Prompt = {
79
+
promptData: {
80
+
contents: [{ parts: [{ text: 'Hello, {name}! How are you?' } as Part] } as Content],
81
+
systemInstruction: { parts: [{ text: 'Please answer in a short sentence.' } as Part] } as Content,
0 commit comments