Skip to content

Commit

Permalink
Cleaned Up
Browse files Browse the repository at this point in the history
  • Loading branch information
ShahFragcolor committed Dec 5, 2023
1 parent c8f0e12 commit fc0141a
Show file tree
Hide file tree
Showing 166 changed files with 633 additions and 658 deletions.
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/detach_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I execute one wire that will run asynchornously to the main wire.
"""
prompt: """How do I execute one wire that will run asynchornously to the main wire."""

solution: """
@wire(wire{
Expand All @@ -20,5 +18,5 @@
can be detached at any point in time. Subsequent detaches of the same wire, will be ignored.
"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/doMany_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I execute and generate multiple wires that will execute inline to the parent wire.
"""
prompt: """How do I execute and generate multiple wires that will execute inline to the parent wire."""

solution: """
@wire(main-wire{
Expand All @@ -23,5 +21,5 @@

"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/do_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I execute a wire from the main wire and continue the main wire after complete execution of the executed wire.
"""
prompt: """How do I execute a wire from the main wire and continue the main wire after complete execution of the executed wire."""

solution: """
@wire(main-wire{
Expand All @@ -21,5 +19,5 @@

"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/pause_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I stop a wire from executing momentarily for a period of time
"""
prompt: """How do I stop a wire from executing momentarily for a period of time"""

solution: """
@wire(wire{
Expand All @@ -20,5 +18,5 @@
Executor Shard within the time frame specified in the Time parameter, it will be ignored.
"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/restart_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I resume a wire that has been suspended from the start of the wire?
"""
prompt: """How do I resume a wire that has been suspended from the start of the wire?"""

solution: """
@wire(wire{
Expand All @@ -19,5 +17,5 @@
Restart is a Shard that will resume a previously suspended wire from the start of said wire.
"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/resume_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I resume a wire that has been suspended from the point of suspension?
"""
prompt: """How do I resume a wire that has been suspended from the point of suspension?"""

solution: """
@wire(wire{
Expand All @@ -19,5 +17,5 @@
Resume will execute a previously suspended wire from the point of suspension.
"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/spawn_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I execute multiple wires that will run asynchornously to the main wire.
"""
prompt: """How do I execute multiple wires that will run asynchornously to the main wire."""

solution: """
@wire(wire{
Expand All @@ -19,5 +17,5 @@
Spawn will generate multiple wires that will run concurrently in the background within the same mesh as the parent wire.
"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/stepMany_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I execute and generate multiple wires that will execute inline to the parent wire and continue their state whenever called.
"""
prompt: """How do I execute and generate multiple wires that will execute inline to the parent wire and continue their state whenever called."""

solution: """
@wire(main-wire{
Expand All @@ -25,5 +23,5 @@

"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/step_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I execute a wire that continues its state whenever it is called.
"""
prompt: """How do I execute a wire that continues its state whenever it is called."""

solution: """
@wire(main-wire{
Expand All @@ -23,5 +21,5 @@
continue its state from where it last paused.
"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/stop_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I stop a wire?
"""
prompt: """How do I stop a wire?"""

solution: """
@wire(main-wire{
Expand All @@ -21,5 +19,5 @@

"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/suspend_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I pause a wire until it is specifically resumed.
"""
prompt: """How do I pause a wire until it is specifically resumed. """

solution: """
@wire(wire{
Expand All @@ -20,5 +18,5 @@
shards are used to revive the wire. If no wire is fed into the Wire parameter, it will suspend the current wire.
"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general-wires/switchto_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I suspend a wire and immediately switch execution to a different wire?
"""
prompt: """How do I suspend a wire and immediately switch execution to a different wire?"""

solution: """
@wire(main-wire{
Expand All @@ -21,5 +19,5 @@

"""

tag: "General"
tag: " #General-Wire"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/FromBase58_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert Base58 to bytes?
"""
prompt: """How do I convert Base58 to bytes?"""

solution: """
bytes
Expand All @@ -17,5 +15,5 @@
FromBase58 is a Shard that takes in a base58 string as input and outputs the corresponding bytes.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/FromBase64_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert Base64 to bytes?
"""
prompt: """How do I convert Base64 to bytes?"""

solution: """
bytes
Expand All @@ -17,5 +15,5 @@
FromBase64 is a Shard that takes in a base64 string as input and outputs the corresponding bytes.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/Table_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I create an empty Table?
"""
prompt: """How do I create an empty Table?"""

solution: """
Table(table-created)
Expand All @@ -27,5 +25,5 @@
More than one data type may be set.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/ToBase58_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert bytes to Base58
"""
prompt: """How do I convert bytes to Base58"""

solution: """
5
Expand All @@ -19,5 +17,5 @@
ToBase58 is a Shard that takes in bytes as input and outputs a base58 format string.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/ToBase64_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert bytes to Base64
"""
prompt: """How do I convert bytes to Base64"""

solution: """
5
Expand All @@ -19,5 +17,5 @@
ToBase64 is a Shard that takes in bytes as input and outputs a base64 format string.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/ToBytes_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert something to Bytes
"""
prompt: """How do I convert something to Bytes"""

solution: """
5
Expand All @@ -17,5 +15,5 @@
ToBytes is a Shard that converts what is fed into input into bytes in its serialized form.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/ToColor_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert a integer to a RGBA color value
"""
prompt: """How do I convert a integer to a RGBA color value"""

solution: """
5 ; integer to convert
Expand All @@ -21,5 +19,5 @@
If the value has more than 4 dimensions, only the first four values will be used.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/ToColor_query2.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert a float to a RGBA color value
"""
prompt: """How do I convert a float to a RGBA color value"""

solution: """
5.0 ; float to convert
Expand All @@ -21,5 +19,5 @@
If the value has more than 4 dimensions, only the first four values will be used.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/ToColor_query3.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert a string to a RGBA color value
"""
prompt: """How do I convert a string to a RGBA color value"""

solution: """
"5.0" ; string to convert
Expand All @@ -22,5 +20,5 @@
If a string that has no numeric value such as "Three", "Five"or "hello" is passed in, the Shard will return (0 0 0 0)
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/ToFloat2_query.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert an integer to a float2?
"""
prompt: """How do I convert an integer to a float2?"""

solution: """
5 ; integer to convert
Expand All @@ -19,5 +17,5 @@
dimensional, it will assign the floating point numbers accordingly. If the input has more than 2 dimensions, the Shard will only use the first 2 values provided.
"""

tag: "General"
tag: " #General"
}
6 changes: 2 additions & 4 deletions ai/fine-tuning-v1/general/ToFloat2_query2.shs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
prompt: """
How do I convert a float to a float2?
"""
prompt: """How do I convert a float to a float2?"""

solution: """
5.0 ; float to convert
Expand All @@ -19,5 +17,5 @@
dimensional, it will assign the floating point numbers accordingly. If the input has more than 2 dimensions, the Shard will only use the first 2 values provided.
"""

tag: "General"
tag: " #General"
}
Loading

0 comments on commit fc0141a

Please sign in to comment.