Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
samholt committed Apr 23, 2024
1 parent 59a0615 commit 0dffa71
Show file tree
Hide file tree
Showing 75 changed files with 15 additions and 2,430 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ print(codebase) # it will print the codebase (repo) complete with all the files

## Tutorial

- 🗒 [Online Document](https://samholt.github.io/l2mac-dev/)
- 🗒 [Online Document](https://samholt.github.io/l2mac/)
- 💻 [Usage](https://samholt.github.io/L2MAC/main/en/guide/get_started/quickstart.html)
- 🔎 [What can MetaGPT do?](https://samholt.github.io/L2MAC/main/en/guide/get_started/introduction.html)
- 🛠 How to run L2MAC?
Expand Down
180 changes: 13 additions & 167 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ export default defineConfig({
math: true,
},
title: "L2MAC",
base: "/l2mac-dev/",
base: "/l2mac/",
description: "The LLM Automatic Computer Framework",
lastUpdated: true,
themeConfig: {
logo: '/l2mac-icon.png',
editLink: {
pattern: 'https://github.com/samholt/l2mac-dev/blob/master/docs/:path'
pattern: 'https://github.com/samholt/l2mac/blob/master/docs/:path'
},
search: {
provider: 'local',
Expand All @@ -21,7 +21,7 @@ export default defineConfig({
nav: [
{
text: 'Docs',
link: '/guide/get_started/introduction',
link: '/get_started/introduction',
activeMatch: '/guide/',
},
{
Expand All @@ -31,10 +31,7 @@ export default defineConfig({
},
],

sidebar: {
'/guide/': {
base: '/guide/',
items: [
sidebar: [
{
text: 'Get Started',
collapsed: false,
Expand All @@ -59,169 +56,20 @@ export default defineConfig({
collapsed: false,
items: [
{ text: 'Concepts', link: 'tutorials/concepts.md' },
{ text: 'Agent 101', link: 'tutorials/agent_101.md' },
{
text: 'MultiAgent 101',
link: 'tutorials/multi_agent_101.md',
},
{ text: 'Use memories', link: 'tutorials/use_memories.md' },
{
text: 'Create and use tools',
link: 'tutorials/create_and_use_tools.md',
},
{
text: 'Human engagement',
link: 'tutorials/human_engagement.md',
},
{
text: 'Integration with open LLM',
link: 'tutorials/integration_with_open_llm.md',
},
{
text: 'Customize LLMs for roles or actions',
link: 'tutorials/customize_llms_for_roles_or_actions.md',
},
{ text: 'L2MAC 101', link: 'tutorials/l2mac_101.md' },
],
},
{
text: 'Use Cases',
collapsed: false,
items: [
{
text: 'Agent',
items: [
{
text: 'Data Interpreter',
link: 'use_cases/agent/interpreter/intro.md',
items: [
{
text: 'Data analysis and visualization',
link: 'use_cases/agent/interpreter/data_visualization.md',
},
{
text: 'Machine learning modeling',
link: 'use_cases/agent/interpreter/machine_learning.md',
},
{
text: 'Machine learning modeling with tools',
link: 'use_cases/agent/interpreter/machine_learning_with_tools.md',
},
{
text: 'Image background removal',
link: 'use_cases/agent/interpreter/image_removebg.md',
},
{
text: 'Solve mathematical problems',
link: 'use_cases/agent/interpreter/solve_mathematical_problems.md',
},
{
text: 'Receipt OCR',
link: 'use_cases/agent/interpreter/ocr_receipt.md',
},
{
text: 'Tool usage: web page imitation',
link: 'use_cases/agent/interpreter/imitate_webpage.md',
},
{
text: 'Human interaction',
link: 'use_cases/agent/interpreter/human_interaction.md',
},
{
text: 'Tool usage: web scraping',
link: 'use_cases/agent/interpreter/crawl_webpage.md',
},
{
text: 'Tool usage: text2image',
link: 'use_cases/agent/interpreter/text2image.md',
},
{
text: 'Tool usage: email summarization and response',
link: 'use_cases/agent/interpreter/email_summary.md',
},
],
},
{
text: 'Researcher: search web and write reports',
link: 'use_cases/agent/researcher.md',
},
{
text: 'Tutorial Assistant',
link: 'use_cases/agent/tutorial_assistant.md',
},
{
text: 'Photographer',
link: 'use_cases/agent/photographer.md',
},
{
text: 'Receipt Assistant',
link: 'use_cases/agent/receipt_assistant.md',
},
{
text: 'Android Assistant',
link: 'use_cases/agent/android_assistant.md',
},
],
text: 'Codebase Generator',
link: 'use_cases/codebase_generator',
},
{
text: 'MultiAgent',
items: [
{
text: 'Debate',
link: 'use_cases/multi_agent/debate.md',
},
{
text: 'Werewolf Game',
link: 'use_cases/multi_agent/werewolf_game.md',
},
{
text: 'Minecraft',
link: 'use_cases/multi_agent/minecraft.md',
},
{
text: 'Stanford Town',
link: 'use_cases/multi_agent/stanford_town.md',
},
],
},
],
},
{
text: 'In-Depth Guides',
collapsed: false,
items: [
{
text: 'Agent communication',
link: 'in_depth_guides/agent_communication.md',
},
{
text: 'Incremental development',
link: 'in_depth_guides/incremental_development.md',
},
{
text: 'Serialization & Breakpoint Recovery',
link: 'in_depth_guides/breakpoint_recovery.md',
},
{
text: 'RAG Module',
link: 'in_depth_guides/rag_module.md',
},
{
text: 'Environment',
link: 'in_depth_guides/environment/intro.md',
items: [
{
text: 'Werewolf Game',
link: 'in_depth_guides/environment/werewolf.md',
},
{
text: 'Stanford Town',
link: 'in_depth_guides/environment/stanford_town.md',
},
{
text: 'Android',
link: 'in_depth_guides/environment/android.md',
},
],
text: 'Book Generator',
link: 'use_cases/book_generator',
},
],
},
Expand All @@ -237,18 +85,16 @@ export default defineConfig({
},
{
text: 'API',
link: 'api',
link: 'api.md',
},
{
text: 'FAQ',
link: 'faq',
},
],
},
},


socialLinks: [
{ icon: 'github', link: 'https://github.com/samholt/l2mac-dev' },
{ icon: 'github', link: 'https://github.com/samholt/l2mac' },
{ icon: 'discord', link: 'https://discord.gg/z27CxnwdhY' },
{ icon: 'x', link: 'https://twitter.com/samianholt' },
// { icon: 'linkedin', link: 'https://uk.linkedin.com/in/samuel-holt' },
Expand All @@ -274,5 +120,5 @@ export default defineConfig({
copyright: 'Copyright © 2023-present Sam Holt'
}
},
head: [['link', { rel: 'icon', href: '/l2mac-dev/favicon.ico' }]]
head: [['link', { rel: 'icon', href: '/l2mac/favicon.ico' }]]
})
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This will create a new `workspace` folder in your local directory where you run

The output should look something like this.

```
```bash
italian_pasta_recipe_book
├── title_page.txt
├── dedication_page.txt
Expand Down
File renamed without changes.
9 changes: 0 additions & 9 deletions docs_old/.agent-store-config.yaml.example

This file was deleted.

Loading

0 comments on commit 0dffa71

Please sign in to comment.