Eclipse
  • Get Started
    • Introduction
    • Installation
    • Quick Start
    • Tokenomics
    • Links
  • Key Components
    • Pipe
    • Agent
    • Memory
    • LLM Clients
    • Engine
    • Prompt Template
    • Handler
Powered by GitBook
On this page
  • Quick start Guide
  • Introduction
  • 1. Installation
  • 2. Create an Application
  • 3. Virtual Environment Setup
  • 4. Building a Use Case
  • 5. Run the Application
  1. Get Started

Quick Start

Quick start Guide

Start building impressive applications with Eclipse in under 5 minutes.

Introduction

This straightforward walkthrough will guide you through the initial steps to create powerful applications using Eclipse:

  1. Installation: How to install Eclipse on your system.

  2. Create an Application: Set up a new Eclipse project with the basic structure.

  3. Virtual Environment Setup: How to create and configure a Python virtual environment for your project.

  4. Building a Use Case: Customizing the pipe.py file to fit your application’s needs.

  5. Run the Application: How to execute your new project with a simple command.

1. Installation

Install the main Eclipse package using the following command:

pip install eclipse

2. Create an Application

Set up a new Eclipse project by creating the necessary directory structure and files. This includes initializing your project and preparing it for development.

3. Virtual Environment Setup

Create and activate a Python virtual environment to manage your project's dependencies:

python3 -m venv venv
source venv/bin/activate

This ensures that your project has an isolated environment, preventing conflicts with other projects.

4. Building a Use Case

Customize the pipe.py file to define the behavior of your AI agents. This involves setting up agents, handlers, and other components to fit your application's specific needs.

5. Run the Application

Execute your project with the following command:

python pipe.py

PreviousInstallationNextTokenomics

Last updated 4 months ago