(arg: KeyValueArg)
| 144 | |
| 145 | |
| 146 | def process_embed_query_param_arg(arg: KeyValueArg) -> str: |
| 147 | return load_text_file(arg).rstrip('\n') |
| 148 | |
| 149 | |
| 150 | def process_file_upload_arg(arg: KeyValueArg) -> Tuple[str, IO, str]: |
nothing calls this directly
no test coverage detected