Skip to content

Commit fd0bd4c

Browse files
authored
Changing config UI link / PR 9
Changing config UI link
2 parents c9978c5 + 54f0aa6 commit fd0bd4c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,6 @@ MIT License - see LICENSE file for details.
184184

185185
## Disclaimers
186186

187-
Please note that Guardrails may use Third-Party Services such as the [Presidio open-source framework](https://github.com/microsoft/presidio), which are subject to their own terms and conditions and are not developed or verified by OpenAI. For more information on configuring guardrails, please visit: [platform.openai.com/guardrails](https://platform.openai.com/guardrails)
187+
Please note that Guardrails may use Third-Party Services such as the [Presidio open-source framework](https://github.com/microsoft/presidio), which are subject to their own terms and conditions and are not developed or verified by OpenAI. For more information on configuring guardrails, please visit: [guardrails.openai.com](https://guardrails.openai.com/)
188188

189189
Developers are responsible for implementing appropriate safeguards to prevent storage or misuse of sensitive or prohibited content (including but not limited to personal data, child sexual abuse material, or other illegal content). OpenAI disclaims liability for any logging or retention of such content by developers. Developers must ensure their systems comply with all applicable data protection and content safety laws, and should avoid persisting any blocked content generated or intercepted by Guardrails.

docs/agents_sdk_integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const agent = new GuardrailAgent({ config: configDict, ... });
9999

100100
## Next Steps
101101

102-
- Use the [Guardrails Wizard](https://platform.openai.com/guardrails) to generate your configuration
102+
- Use the [Guardrails Wizard](https://guardrails.openai.com/) to generate your configuration
103103
- Explore available guardrails for your use case
104104
- Learn about pipeline configuration in our [quickstart](./quickstart.md)
105105
- For more details on the OpenAI Agents SDK, refer to the [Agent SDK documentation](https://openai.github.io/openai-agents-js/).

docs/evals.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The evals tool is included with the TypeScript package. No additional dependenci
3939

4040
Export a configuration from the Guardrails Wizard UI and pass its path via `--config-path`.
4141

42-
- Open the [Wizard UI](https://platform.openai.com/guardrails)
42+
- Open the [Wizard UI](https://guardrails.openai.com/)
4343
- Configure the guardrails you want to evaluate
4444
- Use Export to download the config file (JSON)
4545
- Run the evaluator with `--config-path /path/to/exported_config.json`
@@ -160,4 +160,4 @@ npm run eval -- --config-path config.json --dataset-path data.jsonl --base-url h
160160
## Next Steps
161161

162162
- See the [API Reference](./ref/eval/guardrail_evals.md) for detailed documentation
163-
- Use [Wizard UI](https://platform.openai.com/guardrails) for configuring guardrails without code
163+
- Use [Wizard UI](https://guardrails.openai.com/) for configuring guardrails without code

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Guardrails
22

3-
**Guardrails** is a safety framework for LLM applications that automatically validates inputs and outputs using configurable checks. Use the [Guardrails Wizard](https://platform.openai.com/guardrails) to create configurations, then drop in our client classes for automatic validation.
3+
**Guardrails** is a safety framework for LLM applications that automatically validates inputs and outputs using configurable checks. Use the [Guardrails Wizard](https://guardrails.openai.com/) to create configurations, then drop in our client classes for automatic validation.
44

55
![Guardrails Wizard](assets/images/guardrails_wizard_screenshot.png)
66

@@ -55,7 +55,7 @@ main();
5555

5656
- [Quickstart](./quickstart.md)
5757
- [Examples](./examples.md) - See real implementations
58-
- [Guardrails Wizard](https://platform.openai.com/guardrails) - Create configurations visually
58+
- [Guardrails Wizard](https://guardrails.openai.com/) - Create configurations visually
5959

6060
## Disclaimers
6161

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export OPENAI_API_KEY=sk-...
1616

1717
## Create Pipeline Configuration
1818

19-
The fastest way is using the [Guardrails Wizard](https://platform.openai.com/guardrails) - a no-code tool for creating configurations.
19+
The fastest way is using the [Guardrails Wizard](https://guardrails.openai.com/) - a no-code tool for creating configurations.
2020

2121
Or define manually:
2222

src/checks/hallucination-detection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* **IMPORTANT: A valid OpenAI vector store must be created before using this guardrail.**
99
*
1010
* To create an OpenAI vector store, you can:
11-
*
12-
* 1. **Use the Guardrails Wizard**: Configure the guardrail through the [Guardrails Wizard](https://platform.openai.com/guardrails), which provides an option to create a vector store if you don't already have one.
11+
*
12+
* 1. **Use the Guardrails Wizard**: Configure the guardrail through the [Guardrails Wizard](https://guardrails.openai.com/), which provides an option to create a vector store if you don't already have one.
1313
* 2. **Use the OpenAI Dashboard**: Create a vector store directly in the [OpenAI Dashboard](https://platform.openai.com/storage/vector_stores/).
1414
* 3. **Follow OpenAI Documentation**: Refer to the "Create a vector store and upload a file" section of the [File Search documentation](https://platform.openai.com/docs/guides/tools-file-search) for detailed instructions.
1515
* 4. **Use the provided utility script**: Use the `create_vector_store.py` script provided in the [repo](https://github.com/OpenAI-Early-Access/guardrails/blob/main/guardrails/src/guardrails/utils/create_vector_store.py) to create a vector store from local files or directories.

0 commit comments

Comments
 (0)