AutoGPT/frontend
merwanehamadi f4e7b1c61c
Add eval_id and sync Skill Tree with Frontend(#5287)
Add eval_id to skill tree

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
2023-09-21 13:36:17 -07:00
..
android Add google-services.json for android 2023-09-15 14:15:14 -07:00
assets Add eval_id and sync Skill Tree with Frontend(#5287) 2023-09-21 13:36:17 -07:00
build/web Update frontend build (#5282) 2023-09-21 08:07:15 +02:00
ios Add GoogleService-Info.plist for iOS 2023-09-15 14:15:30 -07:00
lib Integrate LeaderboardService into SkillTreeViewModel 2023-09-20 19:36:25 -07:00
linux Merge commit 'e5d30a9f6d0854e20049309333c2f637cd03025c' as 'frontend' 2023-09-06 11:22:37 -07:00
macos Add Firebase Analytics dependency 2023-09-20 20:40:12 -07:00
test Merge commit 'e5d30a9f6d0854e20049309333c2f637cd03025c' as 'frontend' 2023-09-06 11:22:37 -07:00
web Update index.html to support web 2023-09-15 14:17:44 -07:00
windows Add firebase libraries + google/github logo assets 2023-09-15 14:15:00 -07:00
.gitignore Added action to build and commit the frontend 2023-09-19 12:02:50 +02:00
.metadata Merge commit 'e5d30a9f6d0854e20049309333c2f637cd03025c' as 'frontend' 2023-09-06 11:22:37 -07:00
README.md Switched pull request step 2023-09-19 12:57:49 +02:00
analysis_options.yaml Merge commit 'e5d30a9f6d0854e20049309333c2f637cd03025c' as 'frontend' 2023-09-06 11:22:37 -07:00
build.sh Serving frontend from the forge agent server (#5252) 2023-09-18 16:27:03 +02:00
pubspec.lock Add Firebase Analytics dependency 2023-09-20 20:40:12 -07:00
pubspec.yaml Add Firebase Analytics dependency 2023-09-20 20:40:12 -07:00
run Added cli tool for setting up and running the project 2023-09-15 15:14:06 +02:00

README.md

AutoGPT Flutter Client

Description

This repository contains the Flutter client for the AutoGPT project. The application facilitates users in discussing various tasks with a single agent. The app is built to be cross-platform and runs on Web, Android, iOS, Windows, and Mac.

Features

  • List and manage multiple tasks.
  • Engage in chat conversations related to selected tasks.

Design document

The design document for this project provides a detailed outline of the architecture, components, and other important aspects of this application. Please note that this is a living, growing document and it is subject to change as the project evolves.

You can access the design document here.

Requirements

  • Flutter 3.x
  • Dart 3.x

Flutter comes with Dart, to install Flutter, follow the instructions here: https://docs.flutter.dev/get-started/install

Installation

  1. Clone the repo:
git clone https://github.com/Significant-Gravitas/Auto-GPT.git
  1. Navigate to the project directory:
cd Auto-GPT/frontend
  1. Get Flutter packages:
flutter pub get
  1. Run the app:
flutter run -d chrome --web-port 5000

Project Structure

  • lib/: Contains the main source code for the application.
  • models/: Data models that define the structure of the objects used in the app.
  • views/: The UI components of the application.
  • viewmodels/: The business logic and data handling for the views.
  • services/: Contains the service classes that handle communication with backend APIs and other external data sources. These services are used to fetch and update data that the app uses, and they are consumed by the ViewModels.
  • test/: Contains the test files for unit and widget tests.

Responsive Design

The app features a responsive design that adapts to different screen sizes and orientations. On larger screens (Web, Windows, Mac), views are displayed side by side horizontally. On smaller screens (Android, iOS), views are displayed in a tab bar controller layout.

License

This project is licensed under the MIT License - see the LICENSE file for details.