Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 8b063ca

Browse files
tjholmdavemooreuws
andauthored
Apply suggestions from code review
Co-authored-by: David Moore <[email protected]>
1 parent 8109292 commit 8b063ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/guides/python/ai-podcast-part-1.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ In this guide we'll build a fully autonomous AI podcast, combining an LLM for sc
1111

1212
In this first part we'll focus on generating the audio content, here's a sample of what we'll be able to produce:
1313

14-
<div class="mx-auto max-w-lg rounded-sm bg-black p-4 text-white shadow dark:bg-white dark:text-black">
15-
<div class="space-y-1 pb-4 pl-2 font-mono">
16-
<div class="font-bold">The Dead Internet Podcast</div>
14+
<div className="mx-auto max-w-lg rounded-sm bg-black p-4 text-white shadow dark:bg-white dark:text-black">
15+
<div className="space-y-1 pb-4 pl-2 font-mono">
16+
<div className="font-bold">The Dead Internet Podcast</div>
1717
<div className="text-sm">Episode 1: The Dead Internet Theory</div>
1818
</div>
1919
<audio controls style={{ width: '100%' }}>
@@ -62,7 +62,7 @@ uv add torch transformers scipy --optional ml
6262

6363
## Designing the project
6464

65-
As you may know, Nitric helps with both cloud resource creation and interaction. We'll use Nitric to define the cloud resources our project needs. This includes an API to trigger new jobs, buckets for storing models and audio output and setting up our AI workloads to run as [batch jobs](/batch).
65+
As you may know, Nitric helps with both cloud resource creation and interaction. We'll use Nitric to define the cloud resources our project needs. This includes an API to trigger new jobs, buckets for storing models and audio output, and the setup of our AI workloads to run as [batch jobs](/batch).
6666

6767
To achieve this let's create a new python module which defines the resources for this project. We'll create this as `common/resources.py` in our project.
6868

0 commit comments

Comments
 (0)