Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rozek authored Aug 4, 2024
1 parent f4a2b79 commit 8fc3ff2
Showing 1 changed file with 77 additions and 6 deletions.
83 changes: 77 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,14 @@ Here are a few examples which you can upload into the Blockly workspace to get f

> use this little Blockly program to get familiar with "Suspend", "Resume" and "Abort" (see [Blockly workspace file](./Examples/Suspend_Resume_Abort.json))
### throw ###

![throwError](./Examples/throwError.png)

> this example illustrates how to use the "throw" block (see [Blockly workspace file](./Examples/throwError.json)) - please note, that all blocks following a "throw" will not be evaluated as throwing an exception will terminate a Blockly program


### Text-to-Speech ###

![speak](./Examples/speak.png)
Expand All @@ -663,11 +671,7 @@ Here are a few examples which you can upload into the Blockly workspace to get f

> this example illustrates how to use the Browser's built-in WebSpeech API (see [Blockly workspace file](./Examples/WebSpeech.json))
### throw ###

![throwError](./Examples/throwError.png)

> this example illustrates how to use the "throw" block (see [Blockly workspace file](./Examples/throwError.json)) - please note, that all blocks following a "throw" will not be evaluated as throwing an exception will terminate a Blockly program

### Context ###

Expand All @@ -681,36 +685,58 @@ Here are a few examples which you can upload into the Blockly workspace to get f

> this example demonstrates how to preserve and restore context items (see [Blockly workspace file](./Examples/preserve_restore.json))


### Textline Input ###

![TextlineInput](./Examples/TextlineInput.png)

> this example shows textline input elements in several variations (see [Blockly workspace file](./Examples/TextlineInput.json))
> this example shows textline input elements in several variations (see [Blockly workspace file](./Examples/TextlineInput.json)). the other input elements work quite similarly
### SpeechInput ###

![SpeechInput](./Examples/SpeechInput.png)

> this example demonstrates speech recognition using the Browser's built-in WebSpeech API (see [Blockly workspace file](./Examples/SpeechInput.json))
### CheckboxElement ###

> t.b.w.
### Radiobutton Group ###

![RadiobuttonGroup](./Examples/RadiobuttonGroup.png)

> this example illustrates how to use a radiobutton group (see [Blockly workspace file](./Examples/RadiobuttonGroup.json))
### DropDown ###

> t.b.w.
### APIServerInputElement ###

> t.b.w.
### Output Elements ###

![OutputElements](./Examples/OutputElements.png)

> this example shows all output elements of the playground UI (see [Blockly workspace file](./Examples/OutputElements.json))
### Configuration Options ###

> t.b.w.
### enable and disable ###

![enable_disable](./Examples/enable_disable.png)

> this example demonstrates the effects of enabling or diabling either the whole UI or individual UI elements (see [Blockly workspace file](./Examples/enable_disable.json))
### Event Loop ###

> t.b.w.
### Button Clicks ###

![ButtonWasClicked](./Examples/ButtonWasClicked.png)
Expand All @@ -723,6 +749,23 @@ Here are a few examples which you can upload into the Blockly workspace to get f

> this example demonstrates how to work with objects (see [Blockly workspace file](./Examples/Objects.json))
### Web Search ###

> t.b.w.
### Web Document Retrieval ###

> t.b.w.
### Wikipedia Search ###

> t.b.w.
### Wikipedia Article Retrieval ###

> t.b.w.

## AI Examples ##

The following examples actually include AI-related blocks. As before, the Blockly workspace files should first be downloaded onto your computer and then uploaded into your Blockly workspace
Expand All @@ -737,7 +780,7 @@ The following examples actually include AI-related blocks. As before, the Blockl

> as a hint, here are the settings used by the author himself
### Proof-of-Concept ###
### Chat Completion (Proof-of-Concept) ###

![PoC](./Examples/PoC.png)

Expand All @@ -747,6 +790,10 @@ The following examples actually include AI-related blocks. As before, the Blockl

> this is what you may get as the result
### Text Completion ###

> t.b.w.
### Text Summary ###

![TextSummary](./Examples/TextSummary.png)
Expand All @@ -759,6 +806,10 @@ The following examples actually include AI-related blocks. As before, the Blockl
### AI Web Search ###

> t.b.w.
### AI Web Search - step-by-step ###

![AIWebSearch](./Examples/AIWebSearch.png)

> this example illustrates how to use several AI Mezzanines to implement an AI-assisted web search (see [Blockly workspace file](./Examples/AIWebSearch.json) - download it onto your computer and then upload it into the Blockly workspace)
Expand All @@ -782,6 +833,26 @@ The following examples actually include AI-related blocks. As before, the Blockl

> this is what you may get after running the above example (the intermediate reports have all vanished) - see how the program "reads" all found documents and aggregates the findings into a comprehensive output - even one that can be used for further processing!
### AI Code Generator ###

> t.b.w.
### AI Code Generator - step-by-step ###

> t.b.w.
### AI Task Decomposer ###

> t.b.w.
### AI Response Generator ###

> t.b.w.
### AI Knowledge Generator ###

> t.b.w.
### AI Agent ###

![AI-Agent_I](./Examples/AI-Agent_I.png)
Expand Down

0 comments on commit 8fc3ff2

Please sign in to comment.