Skip to content

Commit

Permalink
Remove double-ticks
Browse files Browse the repository at this point in the history
  • Loading branch information
MiriamScharnke committed Aug 9, 2024
1 parent fbd8369 commit 81538c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/functions/openAIChat.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Connect to OpenAI® Chat Completion API from MATLAB®
`chat = openAIChat(systemPrompt)`


`chat = openAIChat(___,ApiKey=key)`
`chat = openAIChat(___,APIKey=key)`


`chat = openAIChat(___,Name=Value)`
Expand All @@ -28,13 +28,13 @@ To connect to the OpenAI API, you need a valid API key. For information on how t
`chat = openAIChat` creates an `openAIChat` object. Connecting to the OpenAI API requires a valid API key. Either set the environment variable `OPENAI_API_KEY` or specify the `APIKey` name\-value argument.


`chat = openAIChat(``systemPrompt``)` creates an `openAIChat` object with the specified system prompt.
`chat = openAIChat(systemPrompt)` creates an `openAIChat` object with the specified system prompt.


`chat = openAIChat(___,``APIKey``=key)` uses the specified API key.
`chat = openAIChat(___,APIKey=key)` uses the specified API key.


`chat = openAIChat(___,``Name=Value``)` specifies additional options using one or more name\-value arguments.
`chat = openAIChat(___,Name=Value)` specifies additional options using one or more name\-value arguments.

# Input Arguments
### `systemPrompt` — System prompt
Expand Down

0 comments on commit 81538c9

Please sign in to comment.