Skip to content

Commit

Permalink
Minor text fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AccordionGuy committed Dec 3, 2024
1 parent 5623afb commit 2a2e4ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/framework/social-post-generator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -311,13 +311,13 @@ Now follow these steps:

The `pattern` variable in the `# Generate and display hashtags` section defines a regular expression pattern to search for words that begin with the `#` character. The `r` in front of the opening quote specifies that the string is a _raw string_, which means that the `\` character should be treated as a literal backslash and not as the start of an escape character sequence.

Note that `generate_and_display_posts_and_tags()` uses `print()` functions for debugging purposes, and you can use them to get a better idea of what's happening in the function. You'll see their output in both your terminal application and in the project editor's 'log' pane (which will be covered shortly) as you use the chat assistant. This output will include:
Note that `generate_and_display_posts_and_tags()` uses `print()` functions for debugging purposes, and you can use them to get a better idea of what's happening in the function. You'll see their output in both your terminal application and in the project editor's 'log' pane (which will be covered shortly) as you use the social post generator. This output will include:

- The topic the user entered
- The posts generated by the LLM
- The hashtags generated by the LLM

The `print()` functions don't affect the operation of the chat assistant in any way, and you can remove them if you wish.
The `print()` functions don't affect the operation of the social post generator in any way, and you can remove them if you wish.
</Step>

<Step title="Initialize the application">
Expand Down

0 comments on commit 2a2e4ab

Please sign in to comment.