mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-18 22:42:54 +00:00

* Initial infrasctructure for notebooks page * migrate two notebooks * add readme notification for notebook dir * override 'text' prism language to add basic syntactical structure to autogens output * Rework to retain existing directory and not expose front matter to consumers of the notebook * improve error handling of process notebooks * format, ruff and type fixes * undo changes to navbar * update readme, CI * whitespace * spelling mistakes * spelling * Add contributing guide for notebooks * update notebook * formatting
12 lines
463 B
Plaintext
12 lines
463 B
Plaintext
import {findAllNotebooks} from '../src/components/NotebookUtils';
|
|
import GalleryPage from '../src/components/GalleryPage';
|
|
|
|
# Notebooks
|
|
|
|
This page contains a collection of notebooks that demonstrate how to use
|
|
AutoGen. The notebooks are tagged with the topics they cover.
|
|
For example, a notebook that demonstrates how to use function calling will
|
|
be tagged with `function call`.
|
|
|
|
<GalleryPage items={findAllNotebooks()} target="_self" allowDefaultImage={false}/>
|