diff --git a/website/src/pages/about.tsx b/website/src/pages/about.tsx new file mode 100644 index 00000000..1331ad24 --- /dev/null +++ b/website/src/pages/about.tsx @@ -0,0 +1,166 @@ +import { Container } from "@/components/Container"; +import { CallToAction } from "@/components/CallToAction"; +import Image from "next/image"; + +const AboutPage = () => { + return ( +
+ +
+
+ temp-image +
+
+
+

What is OpenAssistant?

+

+ OpenAssistant is a chat-based assistant that understands tasks, can interact with third-party systems, + and retrieve information dynamically to do so. +

+
+

+ It can be extended and personalized easily and is developed as free, open-source software. +

+
+
+
+ +
+ +
+
+
+

Your Conversational Assistant

+ +

State-of-the-Art chat assistant that can be personalized to your needs

+
+
+

Interface w/ external systems

+ +

+ Usage of APIs and third-party applications, described via language & demonstrations. +

+
+
+
+
+

Retrieval via Search Engines

+ +

External, upgradeable knowledge: No need for billions of parameters.

+
+
+

A building block for developers

+ +

Integrate OpenAssistant into your application.

+
+
+
+

+ OpenAssistant unifies all knowledge work in one place +

+ +
    +
  • Uses modern deep learning
  • +
  • Runs on consumer hardware
  • +
  • Trains on human feedback
  • +
  • Free and open
  • +
+
+
+
+
+ +
+ +
+
+

Our Vision

+

+ We want OpenAssistant to be the single, unifying platform that all other systems use to interface with + humans. +

+
+
+ temp-image +
+
+
+
+ + +
+

Our Roadmap

+
+
+
+

ASAP

+
+

Minimum Viable Prototype

+
    +
  • Data Collection Pipeline
  • +
  • RL on Human Feedback
  • +
  • Assistant v1 usable
  • +
  • Out January 2023!
  • +
+
+
+ +
+ +
+
+

+ Q1 +
+ 2023 +

+
+

Growing Up

+
    +
  • Retrieval Augmentation
  • +
  • Rapid Personalization
  • +
  • Using External Tools
  • +
+
+
+ +
+ +
+
+

+ Q2 +
+ 2023 +

+
+

Growing Up

+
    +
  • Third-Party Extentions
  • +
  • Device Control
  • +
  • Multi-Modality
  • +
+
+
+ +
+ +
+
+

...

+
+

Growing Up

+
    +
  • What do you need?
  • +
+
+
+
+
+ + +
+ ); +}; + +export default AboutPage;