Skip to content

Commit

Permalink
mod: update default parse mode for telegram client
Browse files Browse the repository at this point in the history
  • Loading branch information
Blair Lee committed Dec 27, 2024
1 parent b414590 commit f8b5ce6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
6 changes: 1 addition & 5 deletions docs/api/type-aliases/Character.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,13 +428,9 @@ Optional client-specific config

> `optional` **teamMemberInterestKeywords**: `string`[]
### clientConfig.telegram.disableParseMode?

> `optional` **disableParseMode**: `boolean`
### clientConfig.telegram.parseMode?

> `optional` **parseMode**: `"Markdown" | "MarkdownV2" | "HTML"`
> `optional` **parseMode**: `"Markdown" | "MarkdownV2" | "HTML" | null`
### clientConfig.slack?

Expand Down
3 changes: 1 addition & 2 deletions packages/core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -778,8 +778,7 @@ export type Character = {
teamAgentIds?: string[];
teamLeaderId?: string;
teamMemberInterestKeywords?: string[];
disableParseMode?: boolean;
parseMode?: "Markdown" | "MarkdownV2" | "HTML";
parseMode?: "Markdown" | "MarkdownV2" | "HTML" | null;
};
slack?: {
shouldIgnoreBotMessages?: boolean;
Expand Down

0 comments on commit f8b5ce6

Please sign in to comment.