diff options
| author | Dhravya Shah <[email protected]> | 2025-10-03 02:41:49 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-10-03 02:41:49 -0700 |
| commit | 4d6fd37c99fd6af46d2f1aedbeb750e0029b3b8b (patch) | |
| tree | 869d415d87b152bfb5e55601311a2c8f6e64b6fc /apps/docs/quickstart.mdx | |
| parent | chore: fix docs again (diff) | |
| download | supermemory-4d6fd37c99fd6af46d2f1aedbeb750e0029b3b8b.tar.xz supermemory-4d6fd37c99fd6af46d2f1aedbeb750e0029b3b8b.zip | |
fix: model names
Diffstat (limited to 'apps/docs/quickstart.mdx')
| -rw-r--r-- | apps/docs/quickstart.mdx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/docs/quickstart.mdx b/apps/docs/quickstart.mdx index 131bfd6f..b0d12fad 100644 --- a/apps/docs/quickstart.mdx +++ b/apps/docs/quickstart.mdx @@ -466,7 +466,7 @@ https://api.supermemory.ai/v3/[openai-api-url-here] async function chatWithOpenAI() { try { const response = await client.chat.completions.create({ - model: 'gpt-4o', + model: 'gpt-5', messages: [ { role: 'user', content: 'Hello my name is Naman. How are you?' } ], @@ -639,7 +639,7 @@ https://api.supermemory.ai/v3/[openai-api-url-here] def chat_with_openai(): try: response = client.chat.completions.create( - model="gpt-4o", + model="gpt-5", messages=[ {"role": "user", "content": "Hello my name is Naman. How are you?"} ], @@ -785,7 +785,7 @@ https://api.supermemory.ai/v3/[openai-api-url-here] -H "x-supermemory-api-key: $SUPERMEMORY_API_KEY" \ -H "x-sm-user-id: user_123" \ -d '{ - "model": "gpt-4o", + "model": "gpt-5", "messages": [ {"role": "user", "content": "Hello my name is Naman. How are you?"} ], |