mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-16 04:35:13 -05:00
* add skeleton worflow manager * add test notebook * update test nb * add sample team spec * refactor requirements to agentchat and ext * add base provider to return agentchat agents from json spec * initial api refactor, update dbmanager * api refactor * refactor tests * ags api tutorial update * ui refactor * general refactor * minor refactor updates * backend api refaactor * ui refactor and update * implement v1 for streaming connection with ui updates * backend refactor * ui refactor * minor ui tweak * minor refactor and tweaks * general refactor * update tests * sync uv.lock with main * uv lock update
36 lines
852 B
TypeScript
36 lines
852 B
TypeScript
import * as React from "react";
|
|
import Layout from "../components/layout";
|
|
import { graphql } from "gatsby";
|
|
import { TriangleAlertIcon } from "lucide-react";
|
|
|
|
// markup
|
|
const SettingsPage = ({ data }: any) => {
|
|
return (
|
|
<Layout meta={data.site.siteMetadata} title="Home" link={"/build"}>
|
|
<main style={{ height: "100%" }} className=" h-full ">
|
|
<div className="mb-2"> Settings</div>
|
|
<div className="p-2 mt-4 bg-tertiary rounded ">
|
|
<TriangleAlertIcon
|
|
className="w-5 h-5 text-primary inline-block -mt-1"
|
|
strokeWidth={1.5}
|
|
/>{" "}
|
|
Work in progress ..
|
|
</div>
|
|
</main>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export const query = graphql`
|
|
query HomePageQuery {
|
|
site {
|
|
siteMetadata {
|
|
description
|
|
title
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default SettingsPage;
|