https://github.com/eclipse-lmos/arc
The Arc project utilizes the power of Kotlin DSL and Kotlin Scripting to define a language optimized for building LLM-powered solutions.
https://github.com/eclipse-lmos/arc
Last synced: 5 days ago
JSON representation
The Arc project utilizes the power of Kotlin DSL and Kotlin Scripting to define a language optimized for building LLM-powered solutions.
- Host: GitHub
- URL: https://github.com/eclipse-lmos/arc
- Owner: eclipse-lmos
- Created: 2024-04-22T08:28:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-28T19:14:37.000Z (19 days ago)
- Last Synced: 2026-02-28T22:43:17.788Z (19 days ago)
- Language: JavaScript
- Size: 75.2 MB
- Stars: 138
- Watchers: 8
- Forks: 24
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSES/Apache-2.0.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-java - Arc
README
[](https://github.com/eclipse-lmos/arc/actions/workflows/gradle.yml)
[](https://github.com/eclipse-lmos/arc/actions/workflows/gradle-publish.yml)
[](https://www.apache.org/licenses/LICENSE-2.0)
[](CODE_OF_CONDUCT.md)
# The Arc Project
The goal of the Arc project is to utilize the power of Kotlin DSL to define
a language optimized for building LLM powered AI Agents solutions.
```kotlin
fun main() = runBlocking {
// Set OpenAI API Key as System Property or Environment Variable.
// System.setProperty("OPENAI_API_KEY", "****")
agents {
// Use the Agent DSL to define your agents.
agent {
name = "MyAgent"
model { "gpt-4o" }
prompt {
"""
You are a helpful assistant. Help the user with their questions.
"""
}
}
// Add more agents here
}.serve()
}
```
Check out the examples at https://github.com/eclipse-lmos/arc/tree/main/examples.
Please also take a look at the documentation -> https://eclipse.dev/lmos/arc2
Check out the [Arc Agent Demo Project](https://github.com/eclipse-lmos/arc-spring-init) for
an example Spring Boot project that uses the Arc Agent Framework.
## Code of Conduct
Please see the details in our [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md). All contributors must abide by the code of conduct.
By participating in this project, you agree to abide by its [Code of Conduct](./CODE_OF_CONDUCT.md) at all times.
## Licensing
Copyright (c) 2025 Deutsche Telekom AG and others.
Sourcecode licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) (the "License"); you may not use this project except in compliance with the License.
This project follows the [REUSE standard for software licensing](https://reuse.software/).
Each file contains copyright and license information, and license texts can be found in the [./LICENSES](./LICENSES) folder. For more information visit https://reuse.software/.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the LICENSE for the specific language governing permissions and limitations under the License.