Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions python/packages/codex/AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Codex Package (agent-framework-codex)

Integration with OpenAI Codex as a managed agent (Codex SDK).

## Main Classes

- **`CodexAgent`** - Agent using Codex's native agent capabilities
- **`CodexAgentOptions`** - Options for Codex agent configuration
- **`CodexAgentSettings`** - TypedDict-based settings populated via the framework's `load_settings()` helper

## Usage

```python
from agent_framework_codex import CodexAgent

agent = CodexAgent(...)
response = await agent.run("Hello")
```

## Import Path

```python
from agent_framework_codex import CodexAgent
```

## Note

This package is for Codex's managed agent functionality. For basic OpenAI chat, use `agent-framework-openai` instead.
21 changes: 21 additions & 0 deletions python/packages/codex/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) Microsoft Corporation.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE
11 changes: 11 additions & 0 deletions python/packages/codex/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Get Started with Microsoft Agent Framework Codex

Please install this package via pip:

```bash
pip install agent-framework-codex --pre
```

## Codex Agent

The Codex agent enables integration with OpenAI Codex SDK, allowing you to interact with Codex's agentic coding capabilities through the Agent Framework.
18 changes: 18 additions & 0 deletions python/packages/codex/agent_framework_codex/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright (c) Microsoft. All rights reserved.

import importlib.metadata

from ._agent import CodexAgent, CodexAgentOptions, CodexAgentSettings, RawCodexAgent

try:
__version__ = importlib.metadata.version(__name__)
except importlib.metadata.PackageNotFoundError:
__version__ = "0.0.0" # Fallback for development mode

__all__ = [
"CodexAgent",
"CodexAgentOptions",
"CodexAgentSettings",
"RawCodexAgent",
"__version__",
]
Loading