aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/gpt
diff options
context:
space:
mode:
authoreleanor-park <eleanor_park@brown.edu>2024-06-06 13:14:41 -0400
committereleanor-park <eleanor_park@brown.edu>2024-06-06 13:14:41 -0400
commit2277349fc4d5460e94a7a6b705b56488c0efb184 (patch)
tree73dc5fc6f74da323b903a6e9f5be870ce0cef23b /src/client/apis/gpt
parent2f5757ffaebaec9d459404fec266295abeebd2b0 (diff)
working on creating ink strokes from pts
Diffstat (limited to 'src/client/apis/gpt')
-rw-r--r--src/client/apis/gpt/GPT.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/apis/gpt/GPT.ts b/src/client/apis/gpt/GPT.ts
index 5afb345a0..454ea8116 100644
--- a/src/client/apis/gpt/GPT.ts
+++ b/src/client/apis/gpt/GPT.ts
@@ -58,7 +58,7 @@ const callTypeMap: { [type: string]: GPTCallOpts } = {
model: 'gpt-4o',
maxTokens: 256,
temp: 0.5,
- prompt: 'Given an item to draw, generate a list of Bezier control points that will represent the item. Answer only with the list of coordinates and no additional text',
+ prompt: 'Given an item to draw, generate Bezier control points that will represent the item. Answer only with a list of lists of coordinates, where each list of coordinates is one Bezier ink stroke. Do not include any text, description, or comments.',
}
};