Code Interpreter Error In Agents #5343
Unanswered
woojuini
asked this question in
Troubleshooting
Replies: 2 comments
-
Sorry you're having issues. I can't reproduce the error using a similar prompt. It might be a network error, are incoming/outgoing requests allowed for You can also try raw HTTP/curl requests for testing: https://code.librechat.ai/docs Feel free to shoot an email to [email protected] with or listing the subscribed email to check if it's an account issue. Attempthttps://demo.librechat.ai/share/63j8OTBMbjHLI6-O5YHQL import matplotlib.pyplot as plt
import numpy as np
# Data for plotting
issues = ["SMTINFRA-306", "SMTINFRA-1165", "VALOFEBU-115", "SECSD-17"]
resolution_times = [2, 5, 3, 10] # Resolution times in days
fig, ax = plt.subplots()
# Create bar plot
ax.bar(issues, resolution_times, color='skyblue')
# Add labels and title
ax.set_xlabel('Issue Key')
ax.set_ylabel('Resolution Time (days)')
ax.set_title('Resolution Time for Each Issue')
# Rotate x-axis labels for better readability
plt.xticks(rotation=45, ha='right')
# Adjust layout to prevent label cutoff
plt.tight_layout()
# Save the plot
plt.savefig('resolution_times.png') |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What is your question?
Got Error, When Using the Code Interpreter within the Agent
I subscribed to a license on code.librechat.ai and registered a key.
When I activate and run the code Interpreter on the agent, it fails.
The file "resolution_times.png" could not be found at the bottom of /app.
which path is the code interpreter supposed to run?
More Details
our librechat is running on k8s.
I even tried prompting it to run from /tmp in case there was a problem with file storage permissions,
but that didn't work.
What is the main subject of your question?
No response
Screenshots
No response
Code of Conduct
Beta Was this translation helpful? Give feedback.
All reactions