Skip to content

Commit

Permalink
fix: decrease min body length for AI text to speech
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Mar 29, 2024
1 parent 5511e22 commit 9669ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ai/textToSpeech.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Cache from '../cache';
import { fetchProposal, Proposal } from '../../helpers/snapshot';
import { IStorage } from '../storage/types';

const MIN_BODY_LENGTH = 500;
const MIN_BODY_LENGTH = 1;
const MAX_BODY_LENGTH = 4096;

export default class TextToSpeech extends Cache {
Expand Down

0 comments on commit 9669ea7

Please sign in to comment.