Common info
labridge.interact.collect.types.common_info
¶
labridge.interact.collect.types.common_info.CollectingCommonInfo
¶
Bases: CollectingBatchInfoBase
This class defines the common information to be collected from the user. The common information can be collected in batch mode.
PARAMETER | DESCRIPTION |
---|---|
info_name |
The name of the information to be collected.
TYPE:
|
info_description |
The description of the information to be collected.
TYPE:
|
Source code in labridge\interact\collect\types\common_info.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 |
|
labridge.interact.collect.types.common_info.CollectingCommonInfo.info_content()
¶
Yield a batch of information names and descriptions to the LLM for extraction
Source code in labridge\interact\collect\types\common_info.py
77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
labridge.interact.collect.types.common_info.CollectingCommonInfo.insert_info(info)
¶
Insert a new CommonInfo to current one.
PARAMETER | DESCRIPTION |
---|---|
info |
The new CollectingCommonInfo.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None. |
Source code in labridge\interact\collect\types\common_info.py
44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
labridge.interact.collect.types.common_info.CollectingCommonInfo.modify_info_content()
¶
Yield a batch of information names, descriptions and collected content to the LLM for modification.
Source code in labridge\interact\collect\types\common_info.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
labridge.interact.collect.types.common_info.CollectingCommonInfo.update_collected_info(collected_info_dict)
¶
Update the collected information.
Source code in labridge\interact\collect\types\common_info.py
66 67 68 69 70 |
|