mirror of
https://github.com/vxcontrol/pentagi.git
synced 2026-07-20 12:37:04 -04:00
[GH-ISSUE #16] [Bug]: Not able to see any log in PENTAGI UI #8
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Girrajjangid on GitHub (Mar 23, 2025).
Original GitHub issue: https://github.com/vxcontrol/pentagi/issues/16
Originally assigned to: @asdek on GitHub.
Affected Component
Core Services (Frontend UI/Backend API)
Describe the bug
as mentioned in readme.md for instructions to start the application I followed all of them correctly.
After adding OPENAI_KEY. I run this command.
I also added LANGFUSE KEYS and I am able to get Trace on langfuse Web.
After sending first instruction. I do not see anything on PenAGI its of kind stuck. But I can see 3 logs on langfuse web. Only 3.
Any possible reason ?
I am using windows 11 with docker desktop
Steps to Reproduce
System Configuration
Using WIndows 11.
RAM 16GB
DISK 1TB
Logs and Artifacts
No response
Screenshots or Recordings
No response
Verification
@asdek commented on GitHub (Mar 24, 2025):
Hello @Girrajjangid
This may be related to the fact that it is currently downloading the Docker image needed to run your scenario.
Could you provide the latest 10 log lines from the running Docker container PentAGI to assess what problems are shown in the logs?
I plan to add the current scenario execution steps to the UI, to understand whether the Docker image is currently loading or the agent has moved to the next step of using this Docker image.
@Girrajjangid commented on GitHub (Mar 24, 2025):
This is the log.
This is Web UI.
This is Langfuse Logs.
@asdek commented on GitHub (Mar 25, 2025):
@Girrajjangid thank you for additional information.
From your first screenshot, I can see that PentAGI is currently downloading the Kali Linux Docker image. This image is over 6 gigabytes in size, and the download process can take quite some time. In an upcoming pull request, I will add functionality to display the image download progress within the product interface so you can see when the download is complete.
In the meantime, I suggest manually downloading the image by running the docker pull command with the image name shown in your screenshot, and wait for it to finish. After the image is downloaded, PentAGI will use the locally cached image from your Docker registry, and should proceed without delay.
@Girrajjangid commented on GitHub (Mar 26, 2025):
Thanks @asdek it worked. Amazing work guys. .
Just one question. How to stop the API call execution. Let say I don't want to send any request to LLM how to stop that.
I tried multiple ways to stop it. But it keep running.
Then I manually change openai key to incorrect then it stop.
So, Is there a way on UI to stop the execution. Because Agents run in infinite loop.
@asdek commented on GitHub (Mar 26, 2025):
@Girrajjangid
To stop the ongoing execution of the agent, you can use the user interface of the application. Here's how:
Regarding the agent continuing to run after restarting Docker or the application:
Thank you for your feedback. Let me know if you need further assistance! 😉
@Girrajjangid commented on GitHub (Mar 26, 2025):
Thanks for quick revert.