diff --git a/README.md b/README.md index 8e312ab..368120a 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,13 @@ Next, you need to register the recorder in your `config/pulse.php` file: 'sample_rate' => env('PULSE_OPENAI_REQUESTS_SAMPLE_RATE', 1), 'ignore' => [], 'groups' => [ - '/(.*)\/(asst_|file-|ft-|msg_|run_|step_|thread_)[0-9a-zA-Z]*(.*)/' => '\1/\2*\3', + '/(.*)\/(asst_)[0-9a-zA-Z]*(.*)/' => '\1/\2*\3', + '/(.*)\/(file-)[0-9a-zA-Z]*(.*)/' => '\1/\2*\3', + '/(.*)\/(ft-)[0-9a-zA-Z]*(.*)/' => '\1/\2*\3', + '/(.*)\/(thread_)[0-9a-zA-Z]*(.*)\/(run_)[0-9a-zA-Z]*(.*)\/(step_)[0-9a-zA-Z]*(.*)/' => '\1/\2*\3/\4*\5/\6*\7', + '/(.*)\/(thread_)[0-9a-zA-Z]*(.*)\/(run_)[0-9a-zA-Z]*(.*)/' => '\1/\2*\3/\4*\5', + '/(.*)\/(thread_)[0-9a-zA-Z]*(.*)\/(msg_)[0-9a-zA-Z]*(.*)/' => '\1/\2*\3/\4*\5', + '/(.*)\/(thread_)[0-9a-zA-Z]*(.*)/' => '\1/\2*\3', ], ], ],