Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.2.15 #116

Merged
merged 4 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions INTERPRETER_MODULES_DOCUMENTATION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
### Common Characteristics

All interpreter modules share the following characteristics:
1. They implement the `Interpreter` interface, ensuring a consistent API across different language interpreters.
2. They support the addition of predefined variables, allowing for context to be passed into the executed code.
3. They provide methods for running code, validating syntax, and retrieving language-specific information.
4. They include error handling mechanisms to catch and report execution or compilation errors.

### Integration with SkyeNet

These interpreter modules play a crucial role in SkyeNet's multi-language support feature. They allow the AI-powered system to:
1. Execute code snippets in different languages as part of task processing.
2. Validate code syntax before execution, enhancing error handling and user feedback.
3. Integrate language-specific features and libraries into the SkyeNet workflow.

By providing a unified interface through the `Interpreter` interface, SkyeNet can seamlessly work with multiple programming languages, expanding its capabilities and flexibility in handling diverse coding tasks and applications.
166 changes: 0 additions & 166 deletions README.md

This file was deleted.

2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ val hsqldb_version = "2.7.2"

dependencies {

implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.1.11")
implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.1.12")
implementation(group = "org.hsqldb", name = "hsqldb", version = hsqldb_version)

implementation("org.apache.commons:commons-text:1.11.0")
Expand Down
Loading
Loading