Skip to content
/ aire Public

Aire: A statically-typed programming language for agentic workflows on the BEAM

Notifications You must be signed in to change notification settings

pepicrft/aire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Aire

A statically-typed programming language for agentic workflows on the BEAM.

Quick Start

// Define an agent
agent Greeter {
  name: String,
  
  pub fn greet() -> String {
    "Hello, {self.name}!"
  }
}

fn main() {
  let greeter = Greeter(name: "World");
  print(greeter.greet());
}

About

Aire: A statically-typed programming language for agentic workflows on the BEAM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published