Skip to content

Commit

Permalink
Merge pull request #25 from FranciZhong/documentation
Browse files Browse the repository at this point in the history
Documentation
  • Loading branch information
FranciZhong authored Oct 16, 2024
2 parents 97b224c + 101d9e5 commit b858184
Show file tree
Hide file tree
Showing 30 changed files with 3,503 additions and 207 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

Welcome to [Chatemo](http://www.chatemo.chat/), the cutting-edge team communication app that integrates Large Language Models (LLMs) to provide real-time problem-solving capabilities. With Chatemo, there's no need to switch contexts to ask questions—various models. Instead, agents with tailored prompts are accessible directly within the conversation window. Simply input your preferred providers' API keys to get started.

### 🌟 Core Features
[Quick Start](https://www.chatemo.chat/docs/quick-start).

## 🌟 Core Features

1. **AI-Enhanced Team Discussions**
Seamlessly integrate AI assistance into your conversations, ensuring insights and information are always at hand.
Expand Down Expand Up @@ -83,7 +85,7 @@ Manage containerized applications in production efficiently using Kubernetes (K8

Deploy on Google Cloud Platform (GCP) using Google Kubernetes Engine (GKE) or Amazon Web Services (AWS) utilizing S3 Buckets for storage needs.

## Quick Start Guide
## Deployment Guide

Visit our online platform at [Chatemo](http://www.chatemo.chat/).

Expand Down
11 changes: 9 additions & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
/** @type {import('next').NextConfig} */
import nextra from 'nextra';

const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
});

const nextConfig = {
images: {
remotePatterns: [
Expand All @@ -10,6 +16,7 @@ const nextConfig = {
},
],
},
pageExtensions: ['ts', 'tsx', 'md', 'mdx'],
};

export default nextConfig;
export default withNextra(nextConfig);
Loading

0 comments on commit b858184

Please sign in to comment.