2
2
3
3
All notable changes to Parlant will be documented here.
4
4
5
- ### Added
6
- - ** CLI Logging Commands:**
7
- - Added a log command group to the CLI, allowing users to view logs in real-time with optional filters.
8
- - Support for filtering logs by specific components:
9
- - ` --guideline-proposer ` (` -g ` ) to filter logs by ` [GuidelineProposer] ` .
10
- - ` --tool-caller ` (` -t ` ) to filter logs by ` [ToolCaller] ` .
11
- - ` --message-event-generator ` (` -m ` ) to filter logs by ` [MessageEventGenerator] ` .
12
- - Added support for combining patterns:
13
- - ** Intersection Patterns (` --and ` , ` -a ` )** :
14
- - Specify patterns to intersect with. Multiple patterns can be added by repeating the option.
15
- - Example:
16
- ``` bash
17
- parlant log --and pattern1 --and pattern2
18
- ```
19
- - ** Union Patterns (` --or` , ` -o` )** :
20
- - Specify patterns to union by. Multiple patterns can be added by repeating the option.
21
- - Example:
22
- ` ` ` bash
23
- parlant log --or pattern1 --or pattern2
24
- ` ` `
25
- - Example usage:
26
- - Stream all logs:
27
- ` ` ` bash
28
- parlant log
29
- ` ` `
30
- - Filter logs by ` [GuidelineProposer]` :
31
- ` ` ` bash
32
- parlant log --guideline-proposer
33
- ` ` `
34
- - Combine filters with patterns:
35
- ` ` ` bash
36
- parlant log -g -a pattern1 -o pattern2
37
- ` ` `
38
- - ** Log Port Configuration:**
39
- - The log server port can now be configured using the ` PARLANT_LOG_PORT` environment variable.
40
-
41
-
42
5
## [ Unreleased]
43
6
- Add shot creation helper functions under Shot
44
7
- Fix mistake in coherence checker few shots
@@ -50,6 +13,7 @@ All notable changes to Parlant will be documented here.
50
13
- Split vendor dependencies to extra packages to avoid reduce installation time
51
14
- Fix wrong import of RateLimitError
52
15
- Reduced likelihood of agent offering hallucinated services
16
+ - Add a log command under client CLI for streaming logs
53
17
54
18
55
19
## [ 1.5.1] - 2025-01-05
0 commit comments