Spaces:
Sleeping
Sleeping
alessiodevoto
commited on
Commit
•
8da3ac8
1
Parent(s):
f8680f5
Upload folder using huggingface_hub
Browse files- config/config.yaml +3 -3
- newsletter_examples/1.html +3 -2
config/config.yaml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
# llm configs
|
2 |
llm:
|
3 |
-
api_key:
|
4 |
model_name: "gpt-4o"
|
5 |
default_temperature: 0.8
|
6 |
default_max_tokens: 3000
|
@@ -22,8 +22,8 @@ llm:
|
|
22 |
|
23 |
|
24 |
recommender_api:
|
25 |
-
base_url:
|
26 |
-
key:
|
27 |
|
28 |
# app frontend
|
29 |
app:
|
|
|
1 |
# llm configs
|
2 |
llm:
|
3 |
+
api_key:
|
4 |
model_name: "gpt-4o"
|
5 |
default_temperature: 0.8
|
6 |
default_max_tokens: 3000
|
|
|
22 |
|
23 |
|
24 |
recommender_api:
|
25 |
+
base_url:
|
26 |
+
key:
|
27 |
|
28 |
# app frontend
|
29 |
app:
|
newsletter_examples/1.html
CHANGED
@@ -88,6 +88,7 @@
|
|
88 |
|
89 |
.deal-box {
|
90 |
background-color: #F5E6D3; /* Soft light brown */
|
|
|
91 |
padding: 20px;
|
92 |
margin: 15px 0;
|
93 |
border-radius: 8px;
|
@@ -153,7 +154,7 @@
|
|
153 |
|
154 |
<!-- Personal Greeting -->
|
155 |
<div class="section">
|
156 |
-
<p style="font-size: 18px; font-family: 'Georgia', 'Times New Roman', serif; font-style: italic; line-height: 1.5; letter-spacing: 0.5px; text-align: left;">
|
157 |
${greeting} </p>
|
158 |
</div>
|
159 |
|
@@ -180,7 +181,7 @@ ${recommendations} </p>
|
|
180 |
<div class="product">
|
181 |
<img src=${recommendation_url} alt="Recommended Product 1">
|
182 |
<h3>${recommendation_name}</h3>
|
183 |
-
<a href="#" class="button">Explore</a>
|
184 |
</div>
|
185 |
<div class="product">
|
186 |
<img src=${recommendation_url} alt="Recommended Product 2">
|
|
|
88 |
|
89 |
.deal-box {
|
90 |
background-color: #F5E6D3; /* Soft light brown */
|
91 |
+
color: black; /* This will make the text black */
|
92 |
padding: 20px;
|
93 |
margin: 15px 0;
|
94 |
border-radius: 8px;
|
|
|
154 |
|
155 |
<!-- Personal Greeting -->
|
156 |
<div class="section">
|
157 |
+
<p style="font-size: 18px; font-family: 'Georgia', 'Times New Roman', serif; font-style: italic; line-height: 1.5; color: #333; letter-spacing: 0.5px; text-align: left;">
|
158 |
${greeting} </p>
|
159 |
</div>
|
160 |
|
|
|
181 |
<div class="product">
|
182 |
<img src=${recommendation_url} alt="Recommended Product 1">
|
183 |
<h3>${recommendation_name}</h3>
|
184 |
+
<a href="#" class="button" >Explore</a>
|
185 |
</div>
|
186 |
<div class="product">
|
187 |
<img src=${recommendation_url} alt="Recommended Product 2">
|