DysonASI

Welcome To DysonASI

Documentation

Getting Started with DysonASI

DysonASI is a powerful AI platform designed to provide intelligent conversations and real-time solutions. This documentation will guide you through the platform's features, setup process, and usage to help you make the most of its capabilities.

Key Features

  • Context-Aware Chat: Get smart, relevant responses in real-time.
  • Scalable API: Easily integrate DysonASI into your projects.
  • Multi-Industry Use: Adaptable for fields like healthcare, education, and space exploration.
  • Easy Setup: Quick start with simple installation steps.

How to Use DysonASI

Follow these steps to get started with DysonASI:

  1. Install: Set up DysonASI using the Installations guide below.
  2. Integrate API: Use the code snippet from the Chat API section.
  3. Explore: Try it out via the "Try Now" button in the hero section.
  4. Customize: Adjust settings and inputs based on your needs.

Support & Resources

Need help? Check out these resources:

Chat API

                import DysonASI from "dysonasi";

                const dysonasi = new DysonASI();

                async function main() {
                    const stream = await dysonasi.chat.completions.create({
                        model: "dysonasi-2.0",
                        messages: [{ role: "user", content: "Hello, DysonASI!" }],
                        stream: true,
                    });
                    for await (const chunk of stream) {
                        process.stdout.write(chunk.choices[0]?.delta?.content || "");
                    }
                }

                main();
            

About Us

Our Founder: Chinmay Bhatt

DysonASI was founded in 2025 by Chinmay Bhatt, a passionate Full-Stack Developer and AI innovator currently pursuing a BTech in Artificial Intelligence and Data Science at Arya College of Engineering and IT, Jaipur. With expertise in C++, Python, JavaScript, and technologies like React, TensorFlow, and OpenCV, Chinmay has built a strong foundation in creating user-friendly, efficient solutions.

Education
BTech in AI & Data Science

Location
Jaipur, Rajasthan

Experience
2.5+ Years

Technical Expertise & Core Team

As a versatile developer, Chinmay specializes in Full-Stack Development (Node.js, React, MySQL, JavaScript), SEO optimization, and AI/ML technologies. His notable projects include real-time hand gesture recognition using MediaPipe, QuickCBT chatbot app, and contributions to OpenRocket for rocket simulations. He's also the leader of @LightHack, a hackathon-focused initiative, and has achieved recognition as Mr. Fresher Runner-Up.

Founded
2025

Core Team
15+ Innovators

Funding
$6B+ Raised

Users
1M+ Worldwide

Our Mission

At DysonASI, our mission is to develop artificial superintelligence that accelerates human discovery and transforms industries globally. We are committed to crafting intelligent systems that provide actionable insights, optimize complex processes, and adapt seamlessly to diverse needs. Our focus spans across healthcare, education, space exploration, and sustainable energy solutions.

Our Vision

Our vision is to create a future where artificial superintelligence amplifies human ingenuity and reshapes civilization. We see DysonASI as a cornerstone of this transformation—enabling breakthroughs like autonomous space missions, predictive healthcare systems, and universal knowledge access. By 2030, we aspire to launch initiatives that leverage our technology for large-scale societal benefits.

Innovation & Impact

DysonASI combines cutting-edge AI technology with practical applications, from context-aware conversational tools to advanced simulations for technical design. Our work integrates expertise in web development, AI, and data science to deliver systems that are both powerful and accessible. We're focused on creating solutions that range from precision medicine to sustainable energy and interplanetary exploration.

Projects
50+ Active Initiatives

Technologies
10+ Core Stack

Industries
5+ Sectors

DysonASI Installation Guide

MacOS App

Search on your Mac

MacOS App Download on Mac

iOS and Android App

Take DysonASI on the go

Mobile App Download on Mobile

Prerequisites

Make sure you have the following installed on your system:

  • Node.js (LTS version recommended)
  • MongoDB (for database storage)
  • Git (to clone the repository)

Installation Steps

1. Clone the Repository

git clone https://github.com/ChinmayBhattt/DysonASI-AI_Assistent.git
cd DysonASI-AI_Assistent
                

2. Install Dependencies

npm install
                

3. Configure Environment Variables

Create a .env file in the root directory and add the necessary environment variables:

PORT=5000
MONGO_URI=mongodb://localhost:27017/dysonasi
GEMINI_API_KEY=your_google_gemini_api_key
                

Replace your_google_gemini_api_key with your actual Gemini API key.

4. Start MongoDB

Make sure MongoDB is running locally. You can start it using:

mongod --dbpath /path/to/data
                

or if you are using MongoDB Atlas, ensure your connection string is correct in the .env file.

5. Run the Server

npm start
                

The server should now be running on http://localhost:5000.

6. Access DysonASI

Open http://localhost:5000 in your browser or use an API client like Postman to interact with it.

Additional Commands

To run in development mode with hot-reloading:

npm run dev
                

To build for production:

npm run build
                

Troubleshooting

  • If you face any dependency errors, try running:
    npm install --force
                            
  • Ensure MongoDB service is running before starting the server.
  • Check .env configurations if the API does not respond correctly.