(self, step)
| 126 | self._load_init_vars() |
| 127 | |
| 128 | def update_step(self, step): |
| 129 | self.history.append(step) |
| 130 | self.prompt += step |
| 131 | self.total_tokens += len(step.split()) |
| 132 | self.output += step |
| 133 | self.interation_times += 1 |
| 134 | |
| 135 | def update_search(self, search_query): |
| 136 | self.search_count += 1 |
no outgoing calls
no test coverage detected