Skip to content

Commit ab24710

Browse files
committed
chore: replace gpt-4 occurrences with gpt-4o to stay up-to-date
1 parent ffc7375 commit ab24710

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

fern/assistants/personalization.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ This approach is ideal for use cases like customer support, account management,
105105
name: "Dynamic Customer Support Assistant",
106106
model: {
107107
provider: "openai",
108-
model: "gpt-4",
108+
model: "gpt-4o",
109109
messages: [{
110110
role: "system",
111111
content: `You are helping ${customer.name}, a ${customer.tier} member since ${customer.createdAt}.`

fern/examples/outbound-call-python.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Make outbound calls programmatically using various SDKs and languages. This guid
171171
firstMessage: "Hi Jane! Thanks for calling. How can I help you today?",
172172
model: {
173173
provider: "openai",
174-
model: "gpt-4",
174+
model: "gpt-4o",
175175
messages: [
176176
{
177177
role: "system",
@@ -235,7 +235,7 @@ Make outbound calls programmatically using various SDKs and languages. This guid
235235
"first_message": "Hi John! Thanks for calling. How can I help you today?",
236236
"model": {
237237
"provider": "openai",
238-
"model": "gpt-4",
238+
"model": "gpt-4o",
239239
"messages": [
240240
{
241241
"role": "system",
@@ -283,7 +283,7 @@ Make outbound calls programmatically using various SDKs and languages. This guid
283283
"firstMessage": "Hi! Thanks for calling. How can I help you today?",
284284
"model": {
285285
"provider": "openai",
286-
"model": "gpt-4",
286+
"model": "gpt-4o",
287287
"messages": [
288288
{
289289
"role": "system",

fern/quickstart/web.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ This guide shows you how to integrate live, two-way voice conversations into any
9393
},
9494
model: {
9595
provider: "openai",
96-
model: "gpt-4",
96+
model: "gpt-4o",
9797
messages: [
9898
{
9999
role: "system",

fern/tools/custom-tools.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ curl --location --request PATCH 'https://api.vapi.ai/assistant/ASSISTANT_ID' \
125125
--data '{
126126
"model": {
127127
"provider": "openai",
128-
"model": "gpt-4",
128+
"model": "gpt-4o",
129129
"toolIds": ["your-tool-id-here"]
130130
}
131131
}'

fern/tools/google-sheets.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Here's how the tool can be used in your assistant's configuration:
9595
{
9696
"model": {
9797
"provider": "openai",
98-
"model": "gpt-4",
98+
"model": "gpt-4o",
9999
"messages": [
100100
{
101101
"role": "system",
@@ -135,4 +135,4 @@ Here's how the tool can be used in your assistant's configuration:
135135
>
136136
View the complete API documentation for tools
137137
</Card>
138-
</CardGroup>
138+
</CardGroup>

fern/tools/mcp.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Here's how the MCP tool can be used in your assistant's configuration:
101101
{
102102
"model": {
103103
"provider": "openai",
104-
"model": "gpt-4",
104+
"model": "gpt-4o",
105105
"messages": [
106106
{
107107
"role": "system",
@@ -185,4 +185,4 @@ Composio also offers an MCP server for integration:
185185
>
186186
View the complete API documentation for tools
187187
</Card>
188-
</CardGroup>
188+
</CardGroup>

fern/tools/slack.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Here's how the tool can be used in your assistant's configuration:
7777
{
7878
"model": {
7979
"provider": "openai",
80-
"model": "gpt-4",
80+
"model": "gpt-4o",
8181
"messages": [
8282
{
8383
"role": "system",
@@ -118,4 +118,4 @@ Here's how the tool can be used in your assistant's configuration:
118118
>
119119
View the complete API documentation for tools
120120
</Card>
121-
</CardGroup>
121+
</CardGroup>

0 commit comments

Comments
 (0)