Skip to content

Commit 924a316

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

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

fern/customization/custom-llm/tool-calling-integration.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Once your endpoints are set up, try testing them with these cURL commands.
241241
curl -X POST https://custom-llm-url/chat/completions \
242242
-H "Content-Type: application/json" \
243243
-d '{
244-
"model": "gpt-3.5-turbo",
244+
"model": "gpt-4o",
245245
"messages": [
246246
{"role": "user", "content": "I need a payment link."}
247247
],
@@ -268,7 +268,7 @@ Streaming chunks eventually include the result (e.g., a payment link) returned b
268268
curl -X POST https://custom-llm-url/chat/completions \
269269
-H "Content-Type: application/json" \
270270
-d '{
271-
"model": "gpt-3.5-turbo",
271+
"model": "gpt-4o",
272272
"messages": [
273273
{"role": "user", "content": "Please transfer my call."}
274274
],
@@ -423,4 +423,4 @@ By building each layer step by step and testing with cURL, you can fine-tune you
423423
For your convenience, you can find the complete source code for this Custom LLM integration here:
424424
425425
**[Custom LLM with Vapi Integration – Complete Code](https://codesandbox.io/p/devbox/gfwztp)**
426-
```
426+
```

fern/sdk/web.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ vapi.start({
5959
},
6060
model: {
6161
provider: "openai",
62-
model: "gpt-3.5-turbo",
62+
model: "gpt-4o",
6363
messages: [
6464
{
6565
role: "system",

fern/server-url/events.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ With each response, the assistant will automatically determine what functions to
3434
"name": "Ryan's Assistant",
3535
"model": {
3636
"provider": "openai",
37-
"model": "gpt-3.5-turbo",
37+
"model": "gpt-4o",
3838
"functions": [
3939
{
4040
"name": "sendEmail",
@@ -117,7 +117,7 @@ Alternatively, if you prefer to define a transient assistant dynamically, your s
117117
"firstMessage": "Hey Ryan, how are you?",
118118
"model": {
119119
"provider": "openai",
120-
"model": "gpt-3.5-turbo",
120+
"model": "gpt-4o",
121121
"messages": [
122122
{
123123
"role": "system",

fern/tools/default-tools.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This function is provided when `transferCall` is included in the assistant's lis
1818
{
1919
"model": {
2020
"provider": "openai",
21-
"model": "gpt-3.5-turbo",
21+
"model": "gpt-4o",
2222
"messages": [
2323
{
2424
"role": "system",
@@ -48,7 +48,7 @@ This function is provided when `endCall` is included in the assistant's list of
4848
{
4949
"model": {
5050
"provider": "openai",
51-
"model": "gpt-3.5-turbo",
51+
"model": "gpt-4o",
5252
"messages": [
5353
{
5454
"role": "system",
@@ -72,7 +72,7 @@ This function is provided when `sms` is included in the assistant's list of avai
7272
{
7373
"model": {
7474
"provider": "openai",
75-
"model": "gpt-3.5-turbo",
75+
"model": "gpt-4o",
7676
"messages": [
7777
{
7878
"role": "system",
@@ -99,7 +99,7 @@ This function is provided when `dtmf` is included in the assistant's list of ava
9999
{
100100
"model": {
101101
"provider": "openai",
102-
"model": "gpt-3.5-turbo",
102+
"model": "gpt-4o",
103103
"messages": [
104104
{
105105
"role": "system",
@@ -192,4 +192,4 @@ At the assistant level, the `serverUrl` can be specified in the assistant config
192192
If the `serverUrl` is not defined either at the account level or the assistant level, the function call will simply be added to the chat history. This can be particularly useful when you want a function call to trigger an action on the frontend.
193193

194194
For instance, the frontend can listen for specific function calls in the chat history and respond by updating the user interface or performing other actions. This allows for a dynamic and interactive user experience, where the frontend can react to changes in the conversation in real time.
195-
</Accordion>
195+
</Accordion>

0 commit comments

Comments
 (0)