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
{{ message }}
This repository was archived by the owner on May 3, 2021. It is now read-only.
* improved import syntax as the result of converting to python packages for each directory.
* project renamed from CommandIntegrator to commandintegrator
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ The `Callback` object has replaced the old structure with dictionaries when crea
48
48
49
49
**Improvements**
50
50
51
-
*`import CommandIntegrator` is now the only needed import to access everything within the package. By the use of the `__init__.py` file. `import CommandIntegrator as ci` will give you access to all classes and functions in the package from the `ci.` syntax
51
+
*`import commandintegrator` is now the only needed import to access everything within the package. By the use of the `__init__.py` file. `import commandintegrator as ci` will give you access to all classes and functions in the package from the `ci.` syntax
52
52
53
53
54
54
* Language data is migrated to a new file called `language.json` which allows developers to easily increase the support for other languages
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
# CommandIntegrator
1
+
# commandintegrator
2
2
3
3
## What it does
4
-
CommandIntegrator is a lightweight framework and API for creating apps controlled with human language interfaces.
4
+
commandintegrator is a lightweight framework and API for creating apps controlled with human language interfaces.
5
5
It concists of base classes and ready-to-use objects along with a set and clear structure for how to develop and scale a chat bot / Virtual assistant.
6
6
7
7
Objects such as the `Feature`, which can be thought of a micro service within your app, makes it easier to keep the OOP structure clean and well maintained. Automatic command parsing with the `CommandParser` and `CommandProcessor` makes it very straight forward to build and scale your command-controlled application without having to worry about name and word collisions, edge-case actions etcetera.
@@ -10,18 +10,18 @@ Objects such as the `Feature`, which can be thought of a micro service within yo
10
10
11
11
## Objects and wrappers for more effective and easier development
12
12
13
-
CommandIntegrator exists for one reason: To make development of language-driven apps easier. Decorator wrappers for automated logging, scheduling of function execution, caching objects and API DAO's are a few that are included in the package.
13
+
commandintegrator exists for one reason: To make development of language-driven apps easier. Decorator wrappers for automated logging, scheduling of function execution, caching objects and API DAO's are a few that are included in the package.
14
14
15
-
You can build the backend of your virtual assistant / chatbot with the tools and structures of CommandIntegrator and use it in your chatbot for whichever platform you want to use. CommandIntegrator is platform independent and can be used even with a simple command-line app as demonstrated below.
15
+
You can build the backend of your virtual assistant / chatbot with the tools and structures of commandintegrator and use it in your chatbot for whichever platform you want to use. commandintegrator is platform independent and can be used even with a simple command-line app as demonstrated below.
16
16
17
17
18
18
## Example
19
19
20
20
Here's a short example of how to create a virtual assistant that tells you what time it is.
21
-
For a more comprehensive example, please read the `demo_feature.py` file [here](https://github.com/dotchetter/CommandIntegrator/blob/master/examples/demo_feature.py)
21
+
For a more comprehensive example, please read the `demo_feature.py` file [here](https://github.com/dotchetter/commandintegrator/blob/master/examples/demo_feature.py)
0 commit comments