codex-agent-framework 0.1.11__tar.gz → 0.1.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/CHANGELOG.md +22 -0
- {codex_agent_framework-0.1.11/codex_agent_framework.egg-info → codex_agent_framework-0.1.13}/PKG-INFO +11 -6
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/README.md +7 -3
- codex_agent_framework-0.1.13/codex_agent/__init__.py +136 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/__main__.py +1 -2
- codex_agent_framework-0.1.13/codex_agent/agent.py +425 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/agent_runtime.py +60 -24
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/ai.py +7 -6
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/builtin_commands.py +5 -5
- codex_agent_framework-0.1.13/codex_agent/builtin_plugins/__init__.py +10 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_plugins/browser/__init__.py +208 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_plugins/browser/controller.py +690 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_plugins/desktop/__init__.py +605 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_plugins/desktop/controller.py +411 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_plugins/desktop/screenshot.py +44 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_plugins/memory/__init__.py +191 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_plugins/scheduler/__init__.py +155 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_providers.py +17 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_tools/__init__.py +58 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_tools/files.py +274 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_tools/server_tools.py +4 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_tools/shell.py +55 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_tools/system.py +72 -0
- codex_agent_framework-0.1.13/codex_agent/builtin_tools/vision.py +206 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/chat.py +38 -21
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/client.py +11 -2
- codex_agent_framework-0.1.13/codex_agent/command.py +240 -0
- codex_agent_framework-0.1.13/codex_agent/config.py +127 -0
- codex_agent_framework-0.1.13/codex_agent/context.py +231 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/event.py +8 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/get_text/get_text.py +31 -53
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/get_text/simpler_get_text.py +0 -1
- codex_agent_framework-0.1.13/codex_agent/mainloop.py +374 -0
- codex_agent_framework-0.1.13/codex_agent/plugin.py +96 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/prompts/system_prompt.txt +3 -1
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/provider.py +4 -1
- codex_agent_framework-0.1.13/codex_agent/registry.py +190 -0
- codex_agent_framework-0.1.13/codex_agent/runtime.py +34 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/scheduler.py +17 -4
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/server.py +34 -12
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/service.py +3 -2
- codex_agent_framework-0.1.13/codex_agent/sessions.py +360 -0
- codex_agent_framework-0.1.13/codex_agent/status.py +257 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/stream_utils.py +26 -10
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/tool.py +20 -1
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/tray.py +62 -1
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/utils.py +15 -7
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/voice.py +13 -25
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13/codex_agent_framework.egg-info}/PKG-INFO +11 -6
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent_framework.egg-info/SOURCES.txt +25 -2
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent_framework.egg-info/requires.txt +3 -2
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/pyproject.toml +4 -3
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_agent.py +852 -79
- codex_agent_framework-0.1.13/tests/test_browser.py +263 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_chat.py +70 -16
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_client.py +20 -2
- codex_agent_framework-0.1.13/tests/test_get_text_browser.py +55 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_image_message.py +25 -36
- codex_agent_framework-0.1.13/tests/test_local_desktop.py +85 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_memory.py +58 -7
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_messages.py +5 -5
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_scheduler.py +6 -5
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_server.py +123 -19
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_service.py +3 -1
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_tray.py +35 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_utils.py +37 -1
- codex_agent_framework-0.1.11/codex_agent/__init__.py +0 -51
- codex_agent_framework-0.1.11/codex_agent/agent.py +0 -1923
- codex_agent_framework-0.1.11/codex_agent/builtin_providers.py +0 -42
- codex_agent_framework-0.1.11/codex_agent/builtin_tools.py +0 -574
- codex_agent_framework-0.1.11/codex_agent/command.py +0 -19
- codex_agent_framework-0.1.11/codex_agent/get_webdriver.py +0 -44
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/LICENSE +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/MANIFEST.in +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/get_text/__init__.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/get_text/default_gitignore +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/image.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/latex.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/memory.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/message.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/prompts/image_generation_system_prompt.txt +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/tui.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent/worker.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent_framework.egg-info/dependency_links.txt +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent_framework.egg-info/entry_points.txt +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/codex_agent_framework.egg-info/top_level.txt +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/setup.cfg +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_ai.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_cli.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_events.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_tui.py +0 -0
- {codex_agent_framework-0.1.11 → codex_agent_framework-0.1.13}/tests/test_worker.py +0 -0
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
5
|
This project loosely follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and uses semantic versioning where practical.
|
|
6
|
+
|
|
7
|
+
## [0.1.13] - 2026-05-07
|
|
8
|
+
### Changed
|
|
9
|
+
- Reorganize built-in tools into a `codex_agent.builtin_tools` package with separate modules for file, shell, vision, system, and server-tool responsibilities.
|
|
10
|
+
- Keep the public `codex_agent.builtin_tools` import surface compatible by re-exporting the existing built-in tools and helpers from the package initializer.
|
|
11
|
+
|
|
12
|
+
### Tests
|
|
13
|
+
- Update built-in tool regression coverage for the package layout and validate the full suite at 376 passing tests.
|
|
14
|
+
|
|
15
|
+
## [0.1.12] - 2026-05-05
|
|
16
|
+
### Added
|
|
17
|
+
- Add a persistent Playwright/Chromium browser controller with tools to open/close the browser, select tabs, navigate, click, fill, select options, press keys, inspect action snapshots, and capture screenshots.
|
|
18
|
+
- Add `browser_goto(url)` to navigate the active tab without opening or switching tabs.
|
|
19
|
+
- Add screenshot-backed visual fallback for pages where DOM snapshots are insufficient, including PDF viewers and image-heavy pages.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- Replace the Selenium/Gecko rendered extraction path with Playwright-managed Chromium.
|
|
23
|
+
- Update web extraction dependencies and documentation to install Chromium with Playwright.
|
|
24
|
+
|
|
25
|
+
### Tests
|
|
26
|
+
- Add browser controller and rendered extraction regression coverage.
|
|
27
|
+
|
|
6
28
|
## [0.1.11] - 2026-05-05
|
|
7
29
|
### Added
|
|
8
30
|
- Add a separate `view` tool for folders, URLs, rich document extraction, and Python object inspection.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codex-agent-framework
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.13
|
|
4
4
|
Summary: A lightweight event-driven Codex agent runtime.
|
|
5
5
|
Author: Baptiste
|
|
6
6
|
License-Expression: MIT
|
|
@@ -20,23 +20,24 @@ Requires-Dist: beautifulsoup4
|
|
|
20
20
|
Requires-Dist: codex-backend-sdk
|
|
21
21
|
Requires-Dist: fastapi
|
|
22
22
|
Requires-Dist: filetype
|
|
23
|
-
Requires-Dist: get-gecko-driver
|
|
24
23
|
Requires-Dist: modict
|
|
24
|
+
Requires-Dist: mss
|
|
25
25
|
Requires-Dist: numpy
|
|
26
26
|
Requires-Dist: odfpy
|
|
27
27
|
Requires-Dist: openai
|
|
28
28
|
Requires-Dist: openpyxl
|
|
29
29
|
Requires-Dist: pathspec
|
|
30
30
|
Requires-Dist: pillow
|
|
31
|
+
Requires-Dist: playwright
|
|
31
32
|
Requires-Dist: pydub
|
|
32
33
|
Requires-Dist: pypdf
|
|
33
34
|
Requires-Dist: pynteract
|
|
35
|
+
Requires-Dist: pywinctl
|
|
34
36
|
Requires-Dist: python-docx
|
|
35
37
|
Requires-Dist: PyYAML
|
|
36
38
|
Requires-Dist: regex
|
|
37
39
|
Requires-Dist: requests
|
|
38
40
|
Requires-Dist: rich
|
|
39
|
-
Requires-Dist: selenium
|
|
40
41
|
Requires-Dist: textual
|
|
41
42
|
Requires-Dist: tiktoken
|
|
42
43
|
Requires-Dist: trafilatura
|
|
@@ -73,7 +74,7 @@ It provides a reusable `Agent` abstraction with persistent sessions, local tools
|
|
|
73
74
|
- Python 3.10 or newer.
|
|
74
75
|
- A working model backend configuration compatible with `codex-backend-sdk` / OpenAI usage.
|
|
75
76
|
- GTK 3 plus Ayatana AppIndicator or AppIndicator bindings are needed for the tray controller on Linux.
|
|
76
|
-
-
|
|
77
|
+
- Playwright's managed Chromium browser is used for rendered web extraction when static fetching is insufficient. Install it with `python -m playwright install chromium` if needed.
|
|
77
78
|
|
|
78
79
|
## Installation
|
|
79
80
|
|
|
@@ -362,9 +363,11 @@ Configuration is persisted to `agent_config.json` in the runtime directory when
|
|
|
362
363
|
```text
|
|
363
364
|
codex_agent/ Python package
|
|
364
365
|
codex_agent/agent.py Agent, AgentConfig, AgentSession
|
|
365
|
-
codex_agent/
|
|
366
|
+
codex_agent/plugin.py Stateful plugin base class
|
|
367
|
+
codex_agent/builtin_tools/ Built-in local tools package
|
|
366
368
|
codex_agent/builtin_commands.py Built-in slash commands
|
|
367
369
|
codex_agent/builtin_providers.py Built-in context providers
|
|
370
|
+
codex_agent/builtin_plugins/ Auto-loaded stateful plugin packages
|
|
368
371
|
codex_agent/prompts/ Packaged prompt templates
|
|
369
372
|
codex_agent/get_text/ Document extraction helpers
|
|
370
373
|
tests/ Test suite
|
|
@@ -385,7 +388,7 @@ The tests isolate `AGENT_RUNTIME_DIR` automatically, so they should not create o
|
|
|
385
388
|
Current baseline:
|
|
386
389
|
|
|
387
390
|
```text
|
|
388
|
-
|
|
391
|
+
376 passed
|
|
389
392
|
```
|
|
390
393
|
|
|
391
394
|
## Packaging
|
|
@@ -400,6 +403,8 @@ python -m build
|
|
|
400
403
|
The distribution includes prompt text files and `codex_agent/get_text/default_gitignore` through package data and `MANIFEST.in`.
|
|
401
404
|
|
|
402
405
|
## Recent changes
|
|
406
|
+
- `0.1.13`: reorganize built-in tools into a `codex_agent.builtin_tools` package, keeping the public import surface compatible while separating file, shell, vision, system, and server-tool modules.
|
|
407
|
+
- `0.1.12`: add a persistent Playwright/Chromium browser controller with tab navigation, DOM/action snapshots, screenshots, form/click/key tools, and `browser_goto(url)` for active-tab navigation.
|
|
403
408
|
- `0.1.11`: split strict line-numbered UTF-8 `read` from unnumbered extracted `view`, preserve blank lines in read snippets, and show persistent+temporary message counts in the TUI status bar.
|
|
404
409
|
- `0.1.10`: persist only backend compaction summaries, drop bulky compacted conversation payloads, and refresh context status after compaction.
|
|
405
410
|
- `0.1.9`: maintenance packaging release after validating the local execution environment and deploy workflow.
|
|
@@ -25,7 +25,7 @@ It provides a reusable `Agent` abstraction with persistent sessions, local tools
|
|
|
25
25
|
- Python 3.10 or newer.
|
|
26
26
|
- A working model backend configuration compatible with `codex-backend-sdk` / OpenAI usage.
|
|
27
27
|
- GTK 3 plus Ayatana AppIndicator or AppIndicator bindings are needed for the tray controller on Linux.
|
|
28
|
-
-
|
|
28
|
+
- Playwright's managed Chromium browser is used for rendered web extraction when static fetching is insufficient. Install it with `python -m playwright install chromium` if needed.
|
|
29
29
|
|
|
30
30
|
## Installation
|
|
31
31
|
|
|
@@ -314,9 +314,11 @@ Configuration is persisted to `agent_config.json` in the runtime directory when
|
|
|
314
314
|
```text
|
|
315
315
|
codex_agent/ Python package
|
|
316
316
|
codex_agent/agent.py Agent, AgentConfig, AgentSession
|
|
317
|
-
codex_agent/
|
|
317
|
+
codex_agent/plugin.py Stateful plugin base class
|
|
318
|
+
codex_agent/builtin_tools/ Built-in local tools package
|
|
318
319
|
codex_agent/builtin_commands.py Built-in slash commands
|
|
319
320
|
codex_agent/builtin_providers.py Built-in context providers
|
|
321
|
+
codex_agent/builtin_plugins/ Auto-loaded stateful plugin packages
|
|
320
322
|
codex_agent/prompts/ Packaged prompt templates
|
|
321
323
|
codex_agent/get_text/ Document extraction helpers
|
|
322
324
|
tests/ Test suite
|
|
@@ -337,7 +339,7 @@ The tests isolate `AGENT_RUNTIME_DIR` automatically, so they should not create o
|
|
|
337
339
|
Current baseline:
|
|
338
340
|
|
|
339
341
|
```text
|
|
340
|
-
|
|
342
|
+
376 passed
|
|
341
343
|
```
|
|
342
344
|
|
|
343
345
|
## Packaging
|
|
@@ -352,6 +354,8 @@ python -m build
|
|
|
352
354
|
The distribution includes prompt text files and `codex_agent/get_text/default_gitignore` through package data and `MANIFEST.in`.
|
|
353
355
|
|
|
354
356
|
## Recent changes
|
|
357
|
+
- `0.1.13`: reorganize built-in tools into a `codex_agent.builtin_tools` package, keeping the public import surface compatible while separating file, shell, vision, system, and server-tool modules.
|
|
358
|
+
- `0.1.12`: add a persistent Playwright/Chromium browser controller with tab navigation, DOM/action snapshots, screenshots, form/click/key tools, and `browser_goto(url)` for active-tab navigation.
|
|
355
359
|
- `0.1.11`: split strict line-numbered UTF-8 `read` from unnumbered extracted `view`, preserve blank lines in read snippets, and show persistent+temporary message counts in the TUI status bar.
|
|
356
360
|
- `0.1.10`: persist only backend compaction summaries, drop bulky compacted conversation payloads, and refresh context status after compaction.
|
|
357
361
|
- `0.1.9`: maintenance packaging release after validating the local execution environment and deploy workflow.
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
from .agent import Agent
|
|
2
|
+
from .client import AgentClient
|
|
3
|
+
from .config import AgentConfig, ConfigManager, DEFAULT_SYSTEM_PROMPT
|
|
4
|
+
from .context import ContextManager
|
|
5
|
+
from .event import (
|
|
6
|
+
AgentInterruptRequestedEvent,
|
|
7
|
+
AgentInterrupted,
|
|
8
|
+
AgentInterruptedEvent,
|
|
9
|
+
AgentTurnEndEvent,
|
|
10
|
+
AgentTurnErrorEvent,
|
|
11
|
+
AgentTurnStartEvent,
|
|
12
|
+
AssistantStepEndEvent,
|
|
13
|
+
AssistantStepStartEvent,
|
|
14
|
+
AssistantTurnEndEvent,
|
|
15
|
+
AssistantTurnStartEvent,
|
|
16
|
+
AudioPlaybackEvent,
|
|
17
|
+
CompactionCompletedEvent,
|
|
18
|
+
CompactionRequestedEvent,
|
|
19
|
+
Event,
|
|
20
|
+
EventBus,
|
|
21
|
+
MessageAddedEvent,
|
|
22
|
+
MessageSubmittedEvent,
|
|
23
|
+
ResponseContentDeltaEvent,
|
|
24
|
+
ResponseDoneEvent,
|
|
25
|
+
ResponseMessageDeltaEvent,
|
|
26
|
+
ResponseOutputItemEvent,
|
|
27
|
+
ResponseReasoningDeltaEvent,
|
|
28
|
+
ResponseStartEvent,
|
|
29
|
+
ResponseToolCallsDeltaEvent,
|
|
30
|
+
ServerToolCallEvent,
|
|
31
|
+
SessionDeletedEvent,
|
|
32
|
+
SessionLoadedEvent,
|
|
33
|
+
ToolCallDoneEvent,
|
|
34
|
+
ToolCallStartEvent,
|
|
35
|
+
)
|
|
36
|
+
from .message import (
|
|
37
|
+
AssistantMessage,
|
|
38
|
+
CompactionMessage,
|
|
39
|
+
DeveloperMessage,
|
|
40
|
+
Message,
|
|
41
|
+
MessageChunk,
|
|
42
|
+
ProviderMessage,
|
|
43
|
+
ServerToolResponseMessage,
|
|
44
|
+
SystemMessage,
|
|
45
|
+
ToolResultMessage,
|
|
46
|
+
ToolResultWrapper,
|
|
47
|
+
UserMessage,
|
|
48
|
+
)
|
|
49
|
+
from .image import ImageMessage
|
|
50
|
+
from .mainloop import MainLoopManager
|
|
51
|
+
from .memory import MemoryEntry, RAGMemory, RAGMemoryConfig
|
|
52
|
+
from .plugin import Plugin, PluginsManager
|
|
53
|
+
from .registry import RegistryManager
|
|
54
|
+
from .command import AgentCommand, AgentFuture, CommandManager, command
|
|
55
|
+
from .provider import provider
|
|
56
|
+
from .runtime import RuntimeManager
|
|
57
|
+
from .sessions import AgentSession, SessionsManager
|
|
58
|
+
from .status import StatusManager
|
|
59
|
+
from .tool import ImageGenerationTool, ServerTool, Tool, WebSearchTool, get_agent, get_current_call_id, tool
|
|
60
|
+
from .worker import SummarizerWorker, TurnSummaryWorker, Worker
|
|
61
|
+
|
|
62
|
+
__all__ = [
|
|
63
|
+
"Agent",
|
|
64
|
+
"AgentClient",
|
|
65
|
+
"AgentConfig",
|
|
66
|
+
"ConfigManager",
|
|
67
|
+
"DEFAULT_SYSTEM_PROMPT",
|
|
68
|
+
"ContextManager",
|
|
69
|
+
"AgentInterruptRequestedEvent",
|
|
70
|
+
"AgentInterrupted",
|
|
71
|
+
"AgentInterruptedEvent",
|
|
72
|
+
"AgentTurnEndEvent",
|
|
73
|
+
"AgentTurnErrorEvent",
|
|
74
|
+
"AgentTurnStartEvent",
|
|
75
|
+
"AssistantStepEndEvent",
|
|
76
|
+
"AssistantStepStartEvent",
|
|
77
|
+
"AssistantTurnEndEvent",
|
|
78
|
+
"AssistantTurnStartEvent",
|
|
79
|
+
"AudioPlaybackEvent",
|
|
80
|
+
"CompactionCompletedEvent",
|
|
81
|
+
"CompactionRequestedEvent",
|
|
82
|
+
"Event",
|
|
83
|
+
"EventBus",
|
|
84
|
+
"MessageAddedEvent",
|
|
85
|
+
"MessageSubmittedEvent",
|
|
86
|
+
"ResponseContentDeltaEvent",
|
|
87
|
+
"ResponseDoneEvent",
|
|
88
|
+
"ResponseMessageDeltaEvent",
|
|
89
|
+
"ResponseOutputItemEvent",
|
|
90
|
+
"ResponseReasoningDeltaEvent",
|
|
91
|
+
"ResponseStartEvent",
|
|
92
|
+
"ResponseToolCallsDeltaEvent",
|
|
93
|
+
"ServerToolCallEvent",
|
|
94
|
+
"SessionDeletedEvent",
|
|
95
|
+
"SessionLoadedEvent",
|
|
96
|
+
"ToolCallDoneEvent",
|
|
97
|
+
"ToolCallStartEvent",
|
|
98
|
+
"AssistantMessage",
|
|
99
|
+
"CompactionMessage",
|
|
100
|
+
"DeveloperMessage",
|
|
101
|
+
"Message",
|
|
102
|
+
"MessageChunk",
|
|
103
|
+
"ProviderMessage",
|
|
104
|
+
"ServerToolResponseMessage",
|
|
105
|
+
"SystemMessage",
|
|
106
|
+
"ToolResultMessage",
|
|
107
|
+
"ToolResultWrapper",
|
|
108
|
+
"UserMessage",
|
|
109
|
+
"ImageMessage",
|
|
110
|
+
"MainLoopManager",
|
|
111
|
+
"MemoryEntry",
|
|
112
|
+
"RAGMemory",
|
|
113
|
+
"RAGMemoryConfig",
|
|
114
|
+
"Plugin",
|
|
115
|
+
"PluginsManager",
|
|
116
|
+
"RegistryManager",
|
|
117
|
+
"AgentCommand",
|
|
118
|
+
"AgentFuture",
|
|
119
|
+
"CommandManager",
|
|
120
|
+
"command",
|
|
121
|
+
"provider",
|
|
122
|
+
"RuntimeManager",
|
|
123
|
+
"AgentSession",
|
|
124
|
+
"SessionsManager",
|
|
125
|
+
"StatusManager",
|
|
126
|
+
"ImageGenerationTool",
|
|
127
|
+
"ServerTool",
|
|
128
|
+
"Tool",
|
|
129
|
+
"WebSearchTool",
|
|
130
|
+
"get_agent",
|
|
131
|
+
"get_current_call_id",
|
|
132
|
+
"tool",
|
|
133
|
+
"SummarizerWorker",
|
|
134
|
+
"TurnSummaryWorker",
|
|
135
|
+
"Worker",
|
|
136
|
+
]
|
|
@@ -26,8 +26,7 @@ def default_agent():
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def configure_server_url(agent, host, port):
|
|
29
|
-
|
|
30
|
-
agent.update_config(server_url=f"http://{host}:{port}", save=False)
|
|
29
|
+
agent.config_manager.update(server_url=f"http://{host}:{port}", save=False)
|
|
31
30
|
return agent
|
|
32
31
|
|
|
33
32
|
|