slow response #7
-
|
Hi, Thank you for the nice work. I used the example code given with my API key, the graph.evaluate() keeps running for more than 5 mins even for a simple task. How to check where I am going wrong? `graph = Graph() subtask1 = "Consider that Ram can eat 20 apples in a day." subtask2 = "Consider that Ram eat 1 apple per day in general." subtask3 = "Now, tell me how many apples Ram can eat in 2 days and how many he will generally eat in 2 days?" graph.add_edge(subtask1, subtask2) result = graph.evaluate()` |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Hello, Thanks for bringing this issue to our attention. This is most likely an OpenAI issue. Our LLM_API tries to catch OpenAI errors for robust multi-turn agent performance, and it might be catching too many errors. Please install the latest version v0.1.5 for the changes to take effect We have updated LLM_API to expose OpenAI authentication errors. In addition, we updated starter code to use GPT-4-turbo for a faster experience. Finally, when setting the nodes, consider passing the |
Beta Was this translation helpful? Give feedback.

Hello,
Thanks for bringing this issue to our attention. This is most likely an OpenAI issue.
Our LLM_API tries to catch OpenAI errors for robust multi-turn agent performance, and it might be catching too many errors.
df43b1e
Please install the latest version v0.1.5 for the changes to take effect
We have updated LLM_API to expose OpenAI authentication errors.
In addition, we updated starter code to use GPT-4-turbo for a faster experience.
Finally, when setting the nodes, consider passing the
verbose=Trueflag, this will show the progress within the node. See our example below: