Collect and authorize
labridge.tools.interact.collect_and_authorize
¶
labridge.tools.interact.collect_and_authorize.CollectAndAuthorizeTool
¶
Bases: CallBackBaseTool
This tool is the template for tools whose process involves information collection from users and the getting final operation authorization from the user.
PARAMETER | DESCRIPTION |
---|---|
tool_fn |
The function that executes the entire process of a specific tool.
TYPE:
|
tool_async_fn |
The function that asynchronously executes the entire process of a specific tool.
TYPE:
|
callback_operation |
The operation that needs the user's authorization.
TYPE:
|
tool_name |
The tool name, recommend the name of the specified tool class.
TYPE:
|
llm |
The used large language model.
TYPE:
|
embed_model |
The used embedding model.
TYPE:
|
verbose |
Whether to show the inner progress.
TYPE:
|
Source code in labridge\tools\interact\collect_and_authorize.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
labridge.tools.interact.collect_and_authorize.CollectAndAuthorizeTool.acollect_and_authorize(user_id, query_str)
async
¶
This Method is an asynchronous version template method can be reused in subclass to reduce code redundancy.
Firstly, this method will collect the required infos from the user. Then, the agent will generate the operation description according to the collected information. Finally, the agent will ask for the user's authorization to execute the operation.
PARAMETER | DESCRIPTION |
---|---|
user_id |
The user_id of a lab member.
TYPE:
|
query_str |
The query from the user.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
output_log
|
including the output of the callback operation and the tool's log.
TYPE:
|
Source code in labridge\tools\interact\collect_and_authorize.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
labridge.tools.interact.collect_and_authorize.CollectAndAuthorizeTool.collect_and_authorize(user_id, query_str)
¶
This Method is a template method can be reused in subclass to reduce code redundancy.
Firstly, this method will collect the required infos from the user. Then, the agent will generate the operation description according to the collected information. Finally, the agent will ask for the user's authorization to execute the operation.
PARAMETER | DESCRIPTION |
---|---|
user_id |
The user_id of a lab member.
TYPE:
|
query_str |
The query from the user.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
output_log
|
including the output of the callback operation and the tool's log.
TYPE:
|
Source code in labridge\tools\interact\collect_and_authorize.py
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
|
labridge.tools.interact.collect_and_authorize.CollectAndAuthorizeTool.log(**kwargs)
¶
Record the tool's logs.
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
The input keyword arguments and the (output, log) of the callback operation.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
tool_log
|
The tool logs, including tool_to_user and tool_to_system.
TYPE:
|
Source code in labridge\tools\interact\collect_and_authorize.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
labridge.tools.interact.collect_and_authorize.CollectAndAuthorizeTool.required_info_dict()
abstractmethod
¶
The required info names and their descriptions
Source code in labridge\tools\interact\collect_and_authorize.py
73 74 75 |
|
labridge.tools.interact.collect_and_authorize.CollectAndAuthorizeTool.required_infos()
abstractmethod
¶
The required infos.
Source code in labridge\tools\interact\collect_and_authorize.py
69 70 71 |
|