privacy page tweaks
Browse files- PRIVACY.md +2 -2
- src/routes/privacy/+page.svelte +2 -2
PRIVACY.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
|
| 3 |
In this `v0` of HuggingChat, we only store messages to display them to the user, not for any other usage (including for research or model training purposes).
|
| 4 |
|
|
@@ -26,4 +26,4 @@ We welcome any feedback on this app: please participate to the public discussion
|
|
| 26 |
## Coming soon
|
| 27 |
|
| 28 |
- LLM watermarking
|
| 29 |
-
-
|
|
|
|
| 1 |
+
## Privacy
|
| 2 |
|
| 3 |
In this `v0` of HuggingChat, we only store messages to display them to the user, not for any other usage (including for research or model training purposes).
|
| 4 |
|
|
|
|
| 26 |
## Coming soon
|
| 27 |
|
| 28 |
- LLM watermarking
|
| 29 |
+
- User setting to share conversations with model authors
|
src/routes/privacy/+page.svelte
CHANGED
|
@@ -3,8 +3,8 @@
|
|
| 3 |
import privacy from "../../../PRIVACY.md?raw";
|
| 4 |
</script>
|
| 5 |
|
| 6 |
-
<div class="overflow-auto">
|
| 7 |
-
<div class="mx-auto
|
| 8 |
{@html marked(privacy, { gfm: true })}
|
| 9 |
</div>
|
| 10 |
</div>
|
|
|
|
| 3 |
import privacy from "../../../PRIVACY.md?raw";
|
| 4 |
</script>
|
| 5 |
|
| 6 |
+
<div class="p-6 overflow-auto">
|
| 7 |
+
<div class="mx-auto pt-6 md:pt-12 pb-24 px-4 prose dark:prose-invert">
|
| 8 |
{@html marked(privacy, { gfm: true })}
|
| 9 |
</div>
|
| 10 |
</div>
|