You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guardrails/copyright.md
+9-13Lines changed: 9 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,47 +4,43 @@ title: Copyrighted Content
4
4
5
5
# Copyrighted Content
6
6
<divclass='subtitle'>
7
-
{subheading}
7
+
Copyright Compliance in Agentic Systems
8
8
</div>
9
9
10
-
{introduction}
11
-
<divclass='risks'/>
12
-
> **Copyrighted Content Risks**<br/>
13
-
> Without safeguards, agents may:
10
+
It is important to ensure that content generated by agentic systems respects intellectual property rights and avoids the unauthorized use of copyrighted material. Copyright compliance is essential not only for legal and ethical reasons, but also to protect users and organizations from liability and reputational risk.
14
11
15
-
> * {reasons}
16
-
17
-
{bridge}
12
+
Guardrails provides the `copyright` function to detect if any licenses are present in a given piece of text, to protect against exactly this.
18
13
19
14
## copyright <spanclass="detector-badge"></span>
20
15
```python
21
16
defcopyright(
22
17
data: Union[str, List[str]],
23
18
) -> List[str]
24
19
```
25
-
Detects potentially copyrighted material in the given `data`.
20
+
Detects copyrighted text material if it isin`data`and returns the detected licenses.
0 commit comments