mirror of
https://github.com/microsoft/autogen.git
synced 2025-10-06 13:35:56 +00:00

* improve template for files, integreate files in db * ui update, improvements to file display grid * add new global skill for image generation * update readme to address #739 * utils.py refactor, separate db uitls for ease of development * db utils * add support for sessions both in backend api and ui * improve implementation for session support * add early v1 support for a gallery and publishing to a gallery * rewrite logic for file storage representation. Store only file references on in db * update generate image logic * update ui layout * fix light dark mode bug * v1 support for showing items added to gallery * remove viewer as it is merged in gallery * formatting updates * QOL refactoring * readme and general updates * add example notebook on assistant api * imporve naming conventions and formatting * readme update * Update samples/apps/autogen-assistant/pyproject.toml Co-authored-by: Chi Wang <wang.chi@microsoft.com> * Update samples/apps/autogen-assistant/notebooks/tutorial.ipynb Co-authored-by: Chi Wang <wang.chi@microsoft.com> --------- Co-authored-by: Chi Wang <wang.chi@microsoft.com>
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import type { GatsbyConfig } from "gatsby";
|
|
|
|
require("dotenv").config({
|
|
path: `.env.${process.env.NODE_ENV}`,
|
|
});
|
|
|
|
const config: GatsbyConfig = {
|
|
pathPrefix: `${process.env.PREFIX_PATH_VALUE}`,
|
|
siteMetadata: {
|
|
title: `AutoGen Assistant`,
|
|
description: `Build Multi-Agent Apps`,
|
|
siteUrl: `http://tbd.place`,
|
|
},
|
|
flags: {
|
|
LAZY_IMAGES: true,
|
|
FAST_DEV: true,
|
|
DEV_SSR: false,
|
|
},
|
|
plugins: [
|
|
"gatsby-plugin-sass",
|
|
"gatsby-plugin-image",
|
|
"gatsby-plugin-sitemap",
|
|
"gatsby-plugin-postcss",
|
|
{
|
|
resolve: "gatsby-plugin-manifest",
|
|
options: {
|
|
icon: "src/images/icon.png",
|
|
},
|
|
},
|
|
"gatsby-plugin-mdx",
|
|
"gatsby-plugin-sharp",
|
|
"gatsby-transformer-sharp",
|
|
{
|
|
resolve: "gatsby-source-filesystem",
|
|
options: {
|
|
name: "images",
|
|
path: "./src/images/",
|
|
},
|
|
__key: "images",
|
|
},
|
|
{
|
|
resolve: "gatsby-source-filesystem",
|
|
options: {
|
|
name: "pages",
|
|
path: "./src/pages/",
|
|
},
|
|
__key: "pages",
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|