We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Agent.stream
Describe the bug Agent.stream overrides Agent.prompt_driver.stream.
Agent.prompt_driver.stream
To Reproduce
from griptape.drivers import OpenAiChatPromptDriver from griptape.structures import Agent agent = Agent( stream=False, prompt_driver=OpenAiChatPromptDriver(model="gpt-4o", stream=True), ) print(agent.tasks[0].prompt_driver.stream)
Expected behavior More intelligent behavior for merging defaults.
The text was updated successfully, but these errors were encountered:
collindutter
Successfully merging a pull request may close this issue.
Describe the bug
Agent.stream
overridesAgent.prompt_driver.stream
.To Reproduce
Expected behavior
More intelligent behavior for merging defaults.
The text was updated successfully, but these errors were encountered: