Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion 02-SetupDevEnvironment/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,14 @@ Once your Codespace is fully loaded and configured, let's run a sample app to ve
1. Open the terminal. You can open a terminal window by typing **Ctrl+\`** (backtick) on Windows or **Cmd+`** on macOS.

1. Switch to the proper directory by running the following command:

If you're using Windows Command Prompt (CMD) or PowerShell:
```bash
cd 02-SetupDevEnvironment\src\BasicChat-01MEAI
```
or If you're using Linux, macOS, Git Bash, WSL, or the VS Code terminal
```bash
cd 02-SetupDevEnvironment/src/BasicChat-01MEAI
```

1. Then run the application with the following command:

Expand Down
4 changes: 2 additions & 2 deletions 03-CoreGenerativeAITechniques/01-lm-completions-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ while (true)

// Process the message with the chat client (example)
var response = await client.GetResponseAsync(conversation);
conversation.Add(response.Message);
conversation.AddRange(response.Messages);

Console.WriteLine(response.Message.Text);
Console.WriteLine(response.Text);
}
```

Expand Down
Loading