mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-10 03:55:00 -05:00
* add new autogen-studio renamed folder * remove old autogen-assistant files * formatting updates * add support for upsert/updates to agents and workflows * version bump, general fixes * support deleting db items * add support for summary method to flowmanager * formatting updates * update serverl urls * version bump * add support for updated metadata messages object to include sender information * formatting updates * update documentation and blog post * blog post update * add description field example to agent workflow spec * readme and blog update * Update website/blog/2023-12-01-AutoGenStudio/index.mdx Co-authored-by: Chi Wang <wang.chi@microsoft.com> * add fix to ensure working directory is cleared after each run * update version * minor updates * formatting updates --------- Co-authored-by: Chi Wang <wang.chi@microsoft.com>
21 lines
407 B
JSON
21 lines
407 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "esnext"],
|
|
"jsx": "react",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./types/*",
|
|
"./src/**/*",
|
|
"./gatsby-node.ts",
|
|
"./gatsby-config.ts",
|
|
"./plugins/**/*"
|
|
]
|
|
}
|