Skip to content

Commit

Permalink
temp change git url
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebCourier committed May 6, 2024
1 parent 2d2f218 commit 82426ab
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion schemas/core/any.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/any.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/any.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Any",
"anyOf": [
Expand Down
4 changes: 2 additions & 2 deletions schemas/core/args-and-kwargs.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/args-and-kwargs.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/args-and-kwargs.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ArgsAndKwargs",
"type": "object",
"properties": {
"args": {
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/any.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/any.json"
}
},
"kwargs": {
Expand Down
8 changes: 4 additions & 4 deletions schemas/core/call.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/call.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/call.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Call",
"type": "object",
"properties": {
"iterations": {
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/iteration.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/iteration.json"
},
"default": []
},
Expand Down Expand Up @@ -38,10 +38,10 @@
"type": "object",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/inputs.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/inputs.json"
},
{
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/args-and-kwargs.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/args-and-kwargs.json"
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions schemas/core/fail-result.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/pass-result.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/pass-result.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PassResult",
"type": "object",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/validation-result.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/validation-result.json"
}
],
"properties": {
Expand All @@ -17,7 +17,7 @@
"type": "string"
},
"fixValue": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/any.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/any.json"
}
}
}
6 changes: 3 additions & 3 deletions schemas/core/guard.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/guard.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/guard.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Guard",
"type": "object",
Expand Down Expand Up @@ -38,7 +38,7 @@
}
},
{
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/history.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/history.json"
}
]
}
Expand All @@ -53,7 +53,7 @@
"type": "object",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/args-and-kwargs.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/args-and-kwargs.json"
}
],
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/core/history.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/history.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/history.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "History",
"type": "array",
Expand Down
2 changes: 1 addition & 1 deletion schemas/core/inputs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/inputs.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/inputs.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Inputs",
"type": "object",
Expand Down
6 changes: 3 additions & 3 deletions schemas/core/iteration.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/iteration.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/iteration.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Iteration",
"type": "object",
"properties": {
"inputs": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/inputs.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/inputs.json"
},
"outputs": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/outputs.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/outputs.json"
}
},
"required": []
Expand Down
8 changes: 4 additions & 4 deletions schemas/core/outputs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/outputs.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/outputs.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Outputs",
"type": "object",
Expand Down Expand Up @@ -28,7 +28,7 @@
"type": "string"
},
{
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/reask.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/reask.json"
},
{
"type": "object",
Expand All @@ -50,13 +50,13 @@
"reasks": {
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/reask.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/reask.json"
}
},
"validatorLogs": {
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/validator-log.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/validator-log.json"
}
},
"error": {
Expand Down
6 changes: 3 additions & 3 deletions schemas/core/pass-result.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/pass-result.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/pass-result.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PassResult",
"type": "object",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/validation-result.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/validation-result.json"
}
],
"properties": {
Expand All @@ -14,7 +14,7 @@
"const": "pass"
},
"valueOverride": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/any.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/any.json"
}
}
}
6 changes: 3 additions & 3 deletions schemas/core/reask.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/reask.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/reask.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ReAsk",
"type": "object",
"properties": {
"incorrectValue": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/any.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/any.json"
},
"failResults": {
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/fail-result.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/fail-result.json"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions schemas/core/validation-outcome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/validation-outcome.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/validation-outcome.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ValidationOutcome",
"description": "The output from a Guard execution.",
Expand All @@ -23,11 +23,11 @@
},
"reask": {
"description": "If validation continuously fails and all allocated reasks are used, this field will contain the final reask that would have been sent to the LLM if additional reasks were available.",
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/reask.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/reask.json"
},
"validationPassed": {
"description": "A boolean to indicate whether or not the LLM output passed validation. If this is False, the validated_output may be invalid.",
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/reask.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/reask.json"
},
"error": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion schemas/core/validation-result.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/validation-result.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/validation-result.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ValidationResult",
"type": "object",
Expand Down
8 changes: 4 additions & 4 deletions schemas/core/validator-log.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/validator-log.json",
"$id": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/validator-log.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ValidatorLog",
"type": "object",
Expand Down Expand Up @@ -30,13 +30,13 @@
"description": "The JSON path to the property which was validated that produced this log."
},
"valueBeforeValidation": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/any.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/any.json"
},
"valueAfterValidation": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/any.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/any.json"
},
"validationResult": {
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/main/schemas/core/validation-result.json"
"$ref": "https://raw.githubusercontent.com/guardrails-ai/interfaces/core-schemas/schemas/core/validation-result.json"
},
"startTime": {
"type": "string",
Expand Down

0 comments on commit 82426ab

Please sign in to comment.