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: README.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,14 @@ Find the ediTDor here to try it out:
7
7
8
8
https://eclipse.github.io/editdor/
9
9
10
+
## Using the AI Chat Function
11
+
The AI chat is currently implemented using Azures cognitive services API. To make use of the chat
12
+
the app has to be compiled with two additional environment variables:
13
+
```bash
14
+
REACT_APP_OPENAI_KEY={api_key}
15
+
REACT_APP_OPENAI_URI={azure_resource_address}
16
+
```
17
+
10
18
## About this project
11
19
12
20
The goal of this project is the easy creation of W3C Thing Description instances and Thing Models by providing a platform-independent ediTDor tool. The following features are addressed in this project
@@ -33,6 +41,10 @@ All systems require the following:
33
41
34
42
*[NodeJS](https://nodejs.org/) version 10+ (e.g., 10.13.0 LTS)
35
43
44
+
45
+
## Install dependencies
46
+
`npm install` install all the dependencies listed within package.json
47
+
36
48
## Start Locally
37
49
`npm run start` starts a local development server on Port 3000 (http://localhost:3000)
38
50
@@ -41,7 +53,8 @@ All systems require the following:
41
53
42
54
`npm build` builds the project for deployment
43
55
44
-
## Implemented Features:
45
-
* JSON Editor with JSON Schema support for TD (Autocompletion, JSON Schema Validation)
56
+
## Implemented Features in the ediTDor:
57
+
* JSON editor with JSON Schema support for TD (autocompletion)
46
58
* Add Property, Action, Event by wizard
47
59
* Render TD to be more human readable
60
+
* Validate JSON Syntax and JSON Schema for TD (JSONLD and Additional Validation for nested TMs will be implemented in the future)
0 commit comments