Is there a way to change the system prompt for the OpenAI agent without creating a new OpenAI agent object? I tried editing the prefix_messages attribute but it doesn't seem to propagate the new system prompt Edit: I think I need to use chat_agent.agent_worker.prefix_messages
If I'm setting up LlamaIndex in an API, is it rationale for me to have a static "chat_engine" that I simply replace the chat_history with every time I get a request? By literalyl doing
Is there a way to easily replicate the behavior of the OpenAiAssistantAgent using the OpenAIAgent? I want to manage my own conversation history and not mess with the threads, but OpenAIAgent seems to perform much worse than OpenAiAssistantAgent