-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3163a6
commit 0bf42df
Showing
24 changed files
with
124 additions
and
32 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Contributing and Shared Usage | ||
|
||
[STARK-PLACE](https://github.com/MarkParker5/STARK-PLACE) repository is a platform library with community extensions. Use commands created by others and feel free to share yours! | ||
|
||
|
||
|
||
|
||
### License | ||
|
||
Project is licensed under |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# First Steps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Welcome to S.T.A.R.K. | ||
|
||
**Speech and Text Algorithmic Recognition Kit** | ||
|
||
Welcome to S.T.A.R.K., a modern, advanced, asynchronous, and fast framework designed for creating intuitive natural language interfaces, especially voice-based. Think of it as the [FastAPI](https://fastapi.tiangolo.com/) but with speech instead of http. | ||
|
||
New to S.T.A.R.K.? Consider reading the articles in navigation sequentially for a comprehensive understanding of the framework, including the "Advanced" section. | ||
|
||
--- | ||
|
||
### 🔍 Key Features: | ||
|
||
- **🛡️ Autonomous and Privacy-Focused**: Stark operates entirely on-device, ensuring your data remains private. Dive deeper into hosting options [here](/where-to-host). | ||
|
||
- **🧠 Context-Aware**: Easily define context and parameters for subsequent requests or parse multiple commands simultaneously. Discover the power of [Commands Context](/commands-context). | ||
|
||
- **🚀 Asynchronous Commands**: Start lengthy tasks and continue using Stark You'll be notified upon completion. Learn about [Sync vs Async Commands](/sync-vs-async-commands) and the intricacies of [Creating Commands](/creating-commands). | ||
|
||
- **📈 Multiple Responses**: Get real-time updates for long tasks, like monitoring download progress. More on this in [Creating Commands](/creating-commands). | ||
|
||
- **🧩 Advanced Patterns Parsing**: Our custom [patterns](/patterns) syntax makes parsing any parameter from strings effortless. | ||
|
||
- 🧠 **Extendable with LLMs**: Enhance Stark's cognition by integrating leading language models like ChatGPT. | ||
|
||
- 🌐 **Multilingual Support**: Interact with Stark in [multiple languages](/advanced/localization-and-multi-language). | ||
|
||
- **🔧 Absolute Customization**: Craft complex commands, integrate various speech or text interfaces, adapt voice assistant modes, or even override existing classes. | ||
|
||
- **🌍 Community Support**: Join [STARK-PLACE](https://github.com/MarkParker5/STARK-PLACE) repository, the platform library filled with community extensions. Utilize commands crafted by others and share your creations. Further information in [Contributing and Shared Usage](/contributing-and-shared-usage). | ||
|
||
--- | ||
|
||
### License | ||
|
||
The S.T.A.R.K. project is licensed under the [CC BY-NC-SA 4.0 International license](https://github.com/MarkParker5/STARK/tree/master/LICENSE.md). You're welcome to modify, contribute to the repository, create, and share forks. Just remember to attribute the original repository and its creator, abstain from commercial use, and retain the existing license. | ||
|
||
**Note**: Failing to provide the necessary attribution or using the project for commercial purposes breaches the licensing terms and could have legal consequences. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Installation | ||
|
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[tool.poetry] | ||
name = "stark" | ||
version = "0.1.0" | ||
version = "4.0.0" | ||
description = "" | ||
authors = ["MarkParker5 <[email protected]>"] | ||
license = "CC BY-NC-ND 4.0" | ||
license = "CC BY-NC-SA 4.0" | ||
readme = "README.md" | ||
packages = [{include = "stark"}] | ||
|
||
|