(topic, allcon)
| 159 | return sm, prob |
| 160 | |
| 161 | def draw_conclusion(topic, allcon): |
| 162 | prp = 'We want to explore '+topic+'. Read the analysis table for several articles and summarize your conclusion. # Table: '+'\n'+allcon+'\n # Conclusion: ' |
| 163 | lt = len(prp.split(' ')) |
| 164 | response = generate_response(prp, 4000-2*lt) |
| 165 | print(allcon) |
| 166 | print(response) |
| 167 | return response.replace('\n', ' ') |
| 168 | |
| 169 | def draw_subtable(pth, topic, docs): |
| 170 | fw = open(pth, 'w') |
no test coverage detected