-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Jules wip 10459775938551966727 #739
New issue
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
Open
TGreen87
wants to merge
31
commits into
openai:main
Choose a base branch
from
TGreen87:jules_wip_10459775938551966727
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…nse-export Remove duplicate ModelResponse export
…ith-caching Implement screenshot caching
…lace-requirements-lock Update agent docs for uv.lock and verification target
…r-mkdocs-search-plugin Fix mkdocs search with i18n
…ng-periods Fix comments to end with periods
…sistant-with-deepgram-api-9xciqt Add Executive Assistant skeleton with Deepgram voice models
…sistant-with-deepgram-api Add Executive Assistant skeleton with Deepgram voice models
* Initial plan for issue * Fix indentation in _run_impl.py * Final changes to ensure the code builds properly Co-authored-by: TGreen87 <170493160+TGreen87@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: TGreen87 <170493160+TGreen87@users.noreply.github.com>
* Initial plan for issue * Initial assessment of changes required for PR #8 Co-authored-by: TGreen87 <170493160+TGreen87@users.noreply.github.com> * Complete code style consistency implementation Co-authored-by: TGreen87 <170493160+TGreen87@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: TGreen87 <170493160+TGreen87@users.noreply.github.com>
… done so far and provide feedback for Jules to continue.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant updates to the OpenAI Agents SDK, including a new "Executive Assistant" agent, improved documentation, and enhancements to the development workflow. Below is a summary of the most important changes:
New Agent Implementation
ExecutiveAssistant
agent, which orchestrates tasks using short-term and long-term memory, a retriever component, and tools for calendar events and email. (agents/executive_assistant/__init__.py
,agents/executive_assistant/memory.py
,agents/executive_assistant/rag.py
,agents/executive_assistant/tools.py
) [1] [2] [3] [4]Documentation Overhaul
AGENTS.md
withagents.md
, a comprehensive bootstrap guide for setting up and using the SDK, including prerequisites, repository layout, and CI/CD workflows. (AGENTS.md
,agents.md
) [1] [2]Workflow and Tooling Improvements
verify
target to theMakefile
to streamline running format, lint, type-checking, and tests in a single command. (Makefile
)docs/scripts/translate_docs.py
to dynamically include language-specific search metadata in translated files. (docs/scripts/translate_docs.py
) [1] [2]Example Enhancements
examples/agent_patterns/advanced_orchestration_example.py
)Project Configuration
pyproject.toml
file for managing thecustom-agents
project, specifying dependencies and Python version requirements. (agents/pyproject.toml
)