Skip to content

Commit

Permalink
Fix missed function in docs/llm/chat
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Jan 30, 2025
1 parent f8a312d commit 6d562bf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions website/pages/docs/llm/chat.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,17 @@ import { IBbsArticle } from "./IBbsArticle";
export class BbsArticleService {
private readonly articles: IBbsArticle[] = [];

/**
* Get all articles.
*
* List up every articles archived in the BBS DB.
*
* @returns List of every articles
*/
public index(): IBbsArticle[] {
return this.articles;
}

/**
* Create a new article.
*
Expand Down

0 comments on commit 6d562bf

Please sign in to comment.