mirror of
https://github.com/Shubhamsaboo/awesome-llm-apps.git
synced 2026-07-16 23:44:06 -05:00
[PR #952] Fix missing spaces in openai_research_agent Agent instructions #15479
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?
📋 Pull Request Information
Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/952
Author: @thejesh23
Created: 7/13/2026
Status: 🔄 Open
Base:
main← Head:fix/openai-research-agent-instructions-spaces📝 Commits (1)
009d30bFix missing spaces in research_agent instructions📊 Changes
1 file changed (+5 additions, -5 deletions)
View changed files
📝
starter_ai_agents/openai_research_agent/research_agent.py(+5 -5)📄 Description
Fixes #949.
What
The
research_agent'sinstructionsinstarter_ai_agents/openai_research_agent/research_agent.py(lines 82–87) used multi-line Python implicit string concatenation but each line was missing its trailing space. The prompt actually shipped to the model contained fused words:term andproduce,less than 300words,or goodgrammar,capture theessence,the summaryitself.Diff
While touching those lines, I also fixed three small English typos in the same block:
succintly→succinctly,must 2-3 paragraphs→must be 2-3 paragraphs,its vital→it's vital. Happy to split those out if you'd prefer only the mechanical space fix.Not touched
Other files in the repo have the same "implicit-concat with missing spaces" pattern too — not fixing those here to keep this PR scoped to a single template.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.