PHP Classes

File: docs_site/docs/.vuepress/config.js

Recommend this page to a friend!
  Packages of Muhammad Umer Farooq   HyperFlow PHP   docs_site/docs/.vuepress/config.js   Download  
File: docs_site/docs/.vuepress/config.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: HyperFlow PHP
Framework to develop AI agents
Author: By
Last change:
Date: 6 days ago
Size: 1,791 bytes
 

Contents

Class file image Download
import { defineUserConfig } from 'vuepress' import { defaultTheme } from '@vuepress/theme-default' import { viteBundler } from '@vuepress/bundler-vite' import { markdownChartPlugin } from '@vuepress/plugin-markdown-chart' export default defineUserConfig({ bundler: viteBundler(), base: '/', title: 'HyperFlow', description: 'Self-improving agent framework for PHP.', head: [ ['link', { rel: 'icon', type: 'image/png', href: '/logo.png' }], ['meta', { name: 'theme-color', content: '#3eaf7c' }], ['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }], ['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black' }], ['meta', { name: 'author', content: 'lablnet' }], ['meta', { name: 'keywords', content: 'AI, Generative AI, LangChain, LangGraph, Quality Diversity, Evolution, LLM, Agents' }] ], plugins: [ markdownChartPlugin({ mermaid: true, }), ], theme: defaultTheme({ logo: '/logo.png', repo: 'lablnet/hyperflow-php', docsDir: 'docs_site/docs', navbar: [ { text: 'Home', link: '/' }, { text: 'Guide', link: '/guide/basic-concepts.md' }, { text: 'Examples', link: '/guide/examples.md' }, ], sidebar: { '/guide/': [{ text: 'Guide', children: [ '/guide/installation.md', '/guide/basic-concepts.md', '/guide/advanced-concepts.md', '/guide/limitations.md', '/guide/examples.md', '/guide/contributing.md', '/guide/citation.md', ], }, ], }, }), })