You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-2Lines changed: 19 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,22 @@ Comprehensive documentation, reference materials, and conference presentations c
49
49
| Building the Brain and Backbone of Enterprise AI Agents | Advanced reasoning and infrastructure strategies for enterprise AI agents. Covers the 2026 agent stack (layered architecture), reasoning patterns (Chain of Thought, Tree of Thoughts, Self-Reflection, Least-to-Most, Decomposed Prompting), and context/belief updates. Presented at DevWeek SF 2026 by Nacho Martinez. |[](./guides/brain_backbone_enterprise_agents_devweek_sf_2026.pdf)|
50
50
| Memory Engineering: The Discipline Behind Memory Augmented Agents | Deep dive into memory engineering as a discipline for AI agents — the science of helping agents remember, reason, and act. Covers the memory ecosystem, form factors, and key disciplines shaping memory-augmented agents. Presented at DevWeek SF 2026 (Keynote) by Richmond Alake. |[](./guides/memory_engineering_devweek_sf_2026.pdf)|
Notebooks focused on the **[Oracle AI Agent Memory](https://www.oracle.com/database/ai-agent-memory/)** package (`oracleagentmemory`) — the AI-Agent Memory Package built on top of Oracle AI Database. These notebooks demonstrate how to use **Oracle AI Database as the unified memory core for AI agents**, serving conversation history, durable facts, and entity state from a single converged engine instead of stitching together a vector DB, key-value store, and relational store.
55
+
56
+
The collection covers the package's developer guide, benchmarks against naive memory, and three end-to-end framework examples (OpenAI Agents SDK, Claude Agent SDK, LangGraph).
| OAMP Developer Guide | Step-by-step guide to the `oracleagentmemory` API: connection, the three core primitives (users/agents, memories, threads), automatic extraction, and vector retrieval. | OAMP, LiteLLM |[](./notebooks/agent_memory/oracle_agent_memory_developer_guide.ipynb)|
61
+
| OAMP Benchmarks | Quantify token cost, latency, and response quality of OAMP vs. naive flat-history memory across 80 scripted turns with three agent variants. | OAMP, LiteLLM, OpenAI |[](./notebooks/agent_memory/oracle_agent_memory_benchmarks.ipynb)|
62
+
| Deep Research Agent | Build a deep research agent for human genome exploration that uses Tavily for live web search and Oracle AI Agent Memory for durable findings across sessions. | OpenAI Agents SDK, Tavily, OAMP |[](./notebooks/agent_memory/01_deep_research_openai_agents.ipynb)|
63
+
| Supply Chain Assistant | A supply chain assistant that tracks shipment cargo via in-process tools and an MCP server, with shipment records and operational notes persisted in OAMP. | Claude Agent SDK, MCP, OAMP |[](./notebooks/agent_memory/02_supply_chain_claude_agent_sdk.ipynb)|
64
+
| Mortgage Approval Workflow | A deterministic mortgage approval workflow modeled as a LangGraph `StateGraph` where OAMP persists applicant data and audit trails so failed runs can resume. | LangGraph, OAMP |[](./notebooks/agent_memory/03_mortgage_workflow_langgraph.ipynb)|
65
+
66
+
> See the [Agent Memory README](./notebooks/agent_memory/README.md) for a recommended reading order, prerequisites, and Open-in-Colab links.
67
+
52
68
### 🎓 **Workshops** (`/workshops`)
53
69
54
70
Hands-on workshops and guided learning experiences that take developers from fundamentals to production patterns with Oracle AI Database. Each workshop is self-contained with a student notebook (TODO gaps to fill in), a complete reference notebook, step-by-step part guides, and a ready-to-run Codespaces / devcontainer environment with Oracle AI Database pre-configured. Workshops progress from information retrieval and RAG, through agentic systems and orchestration, to memory-augmented agents — together they cover the full stack for building AI applications on Oracle.
@@ -74,8 +90,9 @@ Notebooks and apps contributed by partners in the AI ecosystem. AI Developers ca
74
90
1.**Explore Applications**: Start with the applications in `/apps` to see complete, working examples
75
91
2.**Follow Workshops**: Check `/workshops` for guided learning paths
76
92
3.**Experiment with Notebooks**: Use `/notebooks` for hands-on experimentation
77
-
4.**Reference Guides**: Consult `/guides` for detailed documentation
78
-
5.**Check Partner Resources**: Explore `/partners` for integrations with popular AI tools and frameworks
93
+
4.**Build Memory-Augmented Agents**: Dive into `/notebooks/agent_memory` for the Oracle AI Agent Memory package
94
+
5.**Reference Guides**: Consult `/guides` for detailed documentation
95
+
6.**Check Partner Resources**: Explore `/partners` for integrations with popular AI tools and frameworks
0 commit comments