ITP WiP
This commit is contained in:
@@ -73,13 +73,13 @@ class Main:
|
||||
metrics=SystemMetrics(),
|
||||
llms=self._llms,
|
||||
validator=XMLValidator(self._action_schema),
|
||||
parser=ResponseParser(self._io_buffer),
|
||||
parser=ResponseParser(config.work_dir, self._io_buffer),
|
||||
iteration_logger=IterationLogger(self._config.iterations_dir, self._system_prompt, self._action_schema),
|
||||
)
|
||||
self._auto_approver = AutoApprover(self._agent)
|
||||
|
||||
self._app = web.Application()
|
||||
self._api = Api(self._app, self._agent, self._io_buffer, self._working_memory, self._auto_approver)
|
||||
self._api = Api(config.work_dir, self._app, self._agent, self._io_buffer, self._working_memory, self._auto_approver)
|
||||
self._websockets = Websockets(self._app, self._agent, self._io_buffer, self._auto_approver, self._working_memory)
|
||||
self._static = Static(self._app, self._config)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user