275 lines
16 KiB
Plaintext
275 lines
16 KiB
Plaintext
|
|
Loading weights: 0%| | 0/103 [00:00<?, ?it/s]
|
|
Loading weights: 100%|██████████| 103/103 [00:00<00:00, 5627.96it/s]
|
|
INFO: Started server process [221205]
|
|
INFO: Waiting for application startup.
|
|
llama_context: n_ctx_seq (4096) < n_ctx_train (262144) -- the full capacity of the model will not be utilized
|
|
llama_context: n_ctx_seq (4096) < n_ctx_train (131072) -- the full capacity of the model will not be utilized
|
|
llama_kv_cache_iswa: using full-size SWA cache (ref: https://github.com/ggml-org/llama.cpp/pull/13194#issuecomment-2868343055)
|
|
llama_kv_cache: the V embeddings have different sizes across layers and FA is not enabled - padding V cache to 1024
|
|
llama_kv_cache: the V embeddings have different sizes across layers and FA is not enabled - padding V cache to 1024
|
|
llama_context: n_ctx_seq (4096) < n_ctx_train (32768) -- the full capacity of the model will not be utilized
|
|
llama_context: n_ctx_seq (4096) < n_ctx_train (40960) -- the full capacity of the model will not be utilized
|
|
INFO: Application startup complete.
|
|
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
|
|
ERROR: Exception in ASGI application
|
|
Traceback (most recent call last):
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/uvicorn/protocols/http/h11_impl.py", line 415, in run_asgi
|
|
result = await app( # type: ignore[func-returns-value]
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
self.scope, self.receive, self.send
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__
|
|
return await self.app(scope, receive, send)
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/applications.py", line 1159, in __call__
|
|
await super().__call__(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/applications.py", line 90, in __call__
|
|
await self.middleware_stack(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/middleware/errors.py", line 186, in __call__
|
|
raise exc
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/middleware/errors.py", line 164, in __call__
|
|
await self.app(scope, receive, _send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 63, in __call__
|
|
await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
|
|
raise exc
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app
|
|
await app(scope, receive, sender)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/middleware/asyncexitstack.py", line 18, in __call__
|
|
await self.app(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/routing.py", line 660, in __call__
|
|
await self.middleware_stack(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/routing.py", line 680, in app
|
|
await route.handle(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/routing.py", line 276, in handle
|
|
await self.app(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/routing.py", line 134, in app
|
|
await wrap_app_handling_exceptions(app, request)(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
|
|
raise exc
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app
|
|
await app(scope, receive, sender)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/routing.py", line 120, in app
|
|
response = await f(request)
|
|
^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/routing.py", line 674, in app
|
|
raw_response = await run_endpoint_function(
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
...<3 lines>...
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/routing.py", line 330, in run_endpoint_function
|
|
return await run_in_threadpool(dependant.call, **values)
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/concurrency.py", line 32, in run_in_threadpool
|
|
return await anyio.to_thread.run_sync(func)
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/anyio/to_thread.py", line 63, in run_sync
|
|
return await get_async_backend().run_sync_in_worker_thread(
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
func, args, abandon_on_cancel=abandon_on_cancel, limiter=limiter
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/anyio/_backends/_asyncio.py", line 2518, in run_sync_in_worker_thread
|
|
return await future
|
|
^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/anyio/_backends/_asyncio.py", line 1002, in run
|
|
result = context.run(func, *args)
|
|
File "/home/mirivlad/git/ducklm/app/api/server.py", line 103, in resolve_secret
|
|
return runtime.resolve_secret(task_id=request.task_id, secret=request.secret)
|
|
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/app/runtime/runtime_controller.py", line 408, in resolve_secret
|
|
return self.runtime_loop.resolve_secret(
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
|
|
task_id=task_id, secret=secret
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/app/runtime/runtime_loop.py", line 378, in resolve_secret
|
|
execution_result = self._execution_engine.execute(
|
|
task=task,
|
|
...<2 lines>...
|
|
secret_override=secret,
|
|
)
|
|
File "/home/mirivlad/git/ducklm/app/core/execution_engine.py", line 87, in execute
|
|
return self._execute_plan(
|
|
~~~~~~~~~~~~~~~~~~^
|
|
task=task,
|
|
^^^^^^^^^^
|
|
...<3 lines>...
|
|
password_override=password_override,
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/app/core/execution_engine.py", line 211, in _execute_plan
|
|
result = self._execute_tool(
|
|
task=task,
|
|
...<3 lines>...
|
|
password_override=password_override,
|
|
)
|
|
File "/home/mirivlad/git/ducklm/app/core/execution_engine.py", line 824, in _execute_tool
|
|
tool_result = self._tool_registry.get(tool_name).execute(task=task, args=tool_args)
|
|
File "/home/mirivlad/git/ducklm/app/tools/plugins/shell_exec/__init__.py", line 21, in execute
|
|
completed = self._sandbox.run_shell(
|
|
command=command,
|
|
cwd=str(cwd) if cwd else None,
|
|
stdin_data=str(stdin_secret) if stdin_secret is not None else None,
|
|
)
|
|
File "/home/mirivlad/git/ducklm/app/tools/sandbox.py", line 29, in run_shell
|
|
return subprocess.run(
|
|
~~~~~~~~~~~~~~^
|
|
command,
|
|
^^^^^^^^
|
|
...<7 lines>...
|
|
check=False,
|
|
^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/usr/lib/python3.13/subprocess.py", line 556, in run
|
|
stdout, stderr = process.communicate(input, timeout=timeout)
|
|
~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/usr/lib/python3.13/subprocess.py", line 1222, in communicate
|
|
stdout, stderr = self._communicate(input, endtime, timeout)
|
|
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/usr/lib/python3.13/subprocess.py", line 2129, in _communicate
|
|
self._check_timeout(endtime, orig_timeout, stdout, stderr)
|
|
~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/usr/lib/python3.13/subprocess.py", line 1269, in _check_timeout
|
|
raise TimeoutExpired(
|
|
...<2 lines>...
|
|
stderr=b''.join(stderr_seq) if stderr_seq else None)
|
|
subprocess.TimeoutExpired: Command 'sudo -S -p '' apt update && apt upgrade -y' timed out after 30.0 seconds
|
|
ERROR: Exception in ASGI application
|
|
Traceback (most recent call last):
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/uvicorn/protocols/http/h11_impl.py", line 415, in run_asgi
|
|
result = await app( # type: ignore[func-returns-value]
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
self.scope, self.receive, self.send
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__
|
|
return await self.app(scope, receive, send)
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/applications.py", line 1159, in __call__
|
|
await super().__call__(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/applications.py", line 90, in __call__
|
|
await self.middleware_stack(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/middleware/errors.py", line 186, in __call__
|
|
raise exc
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/middleware/errors.py", line 164, in __call__
|
|
await self.app(scope, receive, _send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 63, in __call__
|
|
await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
|
|
raise exc
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app
|
|
await app(scope, receive, sender)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/middleware/asyncexitstack.py", line 18, in __call__
|
|
await self.app(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/routing.py", line 660, in __call__
|
|
await self.middleware_stack(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/routing.py", line 680, in app
|
|
await route.handle(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/routing.py", line 276, in handle
|
|
await self.app(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/routing.py", line 134, in app
|
|
await wrap_app_handling_exceptions(app, request)(scope, receive, send)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
|
|
raise exc
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app
|
|
await app(scope, receive, sender)
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/routing.py", line 120, in app
|
|
response = await f(request)
|
|
^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/routing.py", line 674, in app
|
|
raw_response = await run_endpoint_function(
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
...<3 lines>...
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/fastapi/routing.py", line 330, in run_endpoint_function
|
|
return await run_in_threadpool(dependant.call, **values)
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/starlette/concurrency.py", line 32, in run_in_threadpool
|
|
return await anyio.to_thread.run_sync(func)
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/anyio/to_thread.py", line 63, in run_sync
|
|
return await get_async_backend().run_sync_in_worker_thread(
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
func, args, abandon_on_cancel=abandon_on_cancel, limiter=limiter
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/anyio/_backends/_asyncio.py", line 2518, in run_sync_in_worker_thread
|
|
return await future
|
|
^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/.venv/lib/python3.13/site-packages/anyio/_backends/_asyncio.py", line 1002, in run
|
|
result = context.run(func, *args)
|
|
File "/home/mirivlad/git/ducklm/app/api/server.py", line 103, in resolve_secret
|
|
return runtime.resolve_secret(task_id=request.task_id, secret=request.secret)
|
|
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/home/mirivlad/git/ducklm/app/runtime/runtime_controller.py", line 408, in resolve_secret
|
|
return self.runtime_loop.resolve_secret(
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
|
|
task_id=task_id, secret=secret
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/app/runtime/runtime_loop.py", line 378, in resolve_secret
|
|
execution_result = self._execution_engine.execute(
|
|
task=task,
|
|
...<2 lines>...
|
|
secret_override=secret,
|
|
)
|
|
File "/home/mirivlad/git/ducklm/app/core/execution_engine.py", line 87, in execute
|
|
return self._execute_plan(
|
|
~~~~~~~~~~~~~~~~~~^
|
|
task=task,
|
|
^^^^^^^^^^
|
|
...<3 lines>...
|
|
password_override=password_override,
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/home/mirivlad/git/ducklm/app/core/execution_engine.py", line 211, in _execute_plan
|
|
result = self._execute_tool(
|
|
task=task,
|
|
...<3 lines>...
|
|
password_override=password_override,
|
|
)
|
|
File "/home/mirivlad/git/ducklm/app/core/execution_engine.py", line 824, in _execute_tool
|
|
tool_result = self._tool_registry.get(tool_name).execute(task=task, args=tool_args)
|
|
File "/home/mirivlad/git/ducklm/app/tools/plugins/shell_exec/__init__.py", line 21, in execute
|
|
completed = self._sandbox.run_shell(
|
|
command=command,
|
|
cwd=str(cwd) if cwd else None,
|
|
stdin_data=str(stdin_secret) if stdin_secret is not None else None,
|
|
)
|
|
File "/home/mirivlad/git/ducklm/app/tools/sandbox.py", line 29, in run_shell
|
|
return subprocess.run(
|
|
~~~~~~~~~~~~~~^
|
|
command,
|
|
^^^^^^^^
|
|
...<7 lines>...
|
|
check=False,
|
|
^^^^^^^^^^^^
|
|
)
|
|
^
|
|
File "/usr/lib/python3.13/subprocess.py", line 556, in run
|
|
stdout, stderr = process.communicate(input, timeout=timeout)
|
|
~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/usr/lib/python3.13/subprocess.py", line 1222, in communicate
|
|
stdout, stderr = self._communicate(input, endtime, timeout)
|
|
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/usr/lib/python3.13/subprocess.py", line 2129, in _communicate
|
|
self._check_timeout(endtime, orig_timeout, stdout, stderr)
|
|
~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
File "/usr/lib/python3.13/subprocess.py", line 1269, in _check_timeout
|
|
raise TimeoutExpired(
|
|
...<2 lines>...
|
|
stderr=b''.join(stderr_seq) if stderr_seq else None)
|
|
subprocess.TimeoutExpired: Command 'sudo -S -p '' apt update && apt upgrade -y' timed out after 30.0 seconds
|