DotAI is a revolutionary natural language programming framework that allows you to write code and create content using plain English. Simply describe what you want to create, and DotAI will generate, save, and execute the appropriate files.
- 📝 Write code in natural language
- 🔄 Automatic code generation and execution
- 📊 Multi-threaded task processing
- 🛠 Enterprise-grade error handling
- 📋 Supports multiple output formats
- 📜 Comprehensive logging system
pip3 install ai-lang
Create a file example.ai
with your requests:
Create a Python function that generates the Fibonacci sequence up to n=10 and prints it.
Create a text file containing a haiku about programming.
Create a JSON file with data about three planets including their name, distance from sun, and mass.
ai-lang run example.ai
Usage: ai-lang [OPTIONS] COMMAND [ARGS]...
DotAI - Natural Language Programming Language CLI
Options:
--help Show this message and exit.
Commands:
init Initialize a new .ai file with example content
run Execute a .ai file and generate the requested files/code
version Show the installed version
# script.ai
Create a Python script that:
1. Generates 100 random numbers
2. Calculates their mean and standard deviation
3. Creates a histogram visualization
Execute the script and show the results.
# content.ai
Write a technical blog post about the future of AI in software development.
Save it as a markdown file with proper formatting.
# data.ai
Create a Python script that reads a CSV file, performs data cleaning,
and outputs summary statistics. Include error handling for missing values.
Execute the script with sample data.
- Multi-threading: Process multiple requests in parallel
- Smart Task Analysis: Automatic detection of task type and requirements
- Execution Management: Safe execution environment for generated code
- Comprehensive Logging: Detailed logs for debugging and monitoring
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
git clone https://github.com/The-Swarm-Corporation/.ai.git
cd .ai
pip install -e ".[dev]"
This project is licensed under the MIT License - see the LICENSE file for details.
Check out our examples repository for more use cases and implementation patterns.
DotAI requires an OpenAI API key to function. Set your API key as an environment variable:
export OPENAI_API_KEY='your-api-key-here'
Or use a .env
file in your project directory:
OPENAI_API_KEY=your-api-key-here
- Add support for more LLMs (Function calling, and local models, you should have a config option to choose which one to use in the cli)
- Add support for more file types (images, audio, video, etc, integrate with createnow.xyz)
- Add support for more output formats (pdf, docx, etc)
- Add support for more input types (image, audio, video, etc)
- Add support for more task types (data analysis, data processing, data cleaning, etc)
Made with ❤️ by the DotAI Team