Skip to content

v1.4.1 - #37

Merged
aosingh merged 4 commits into
mainfrom
dev/v1.4.1
Jul 30, 2026
Merged

v1.4.1#37
aosingh merged 4 commits into
mainfrom
dev/v1.4.1

Conversation

@aosingh

@aosingh aosingh commented Jul 30, 2026

Copy link
Copy Markdown
Member

Support for Supervisor Agent

supervisor_attributes = AgentAttributes(
      profile_name="MY_PROFILE",
      role="Coordinate the team.",
      supervisor=True
)
team = Team(
      team_name="MY_TEAM",
      attributes=TeamAttributes(
          agents=[{"name": "WORKER", "task": "ANSWER_TASK"}],
          process="sequential",
          supervisor_agent="SUPERVISOR",
      ),
)

Run or inspect a tool directly

tool = Tool.fetch("AGE_TOOL")
print(tool.describe_tool())
result = tool.run_tool('{"p_birth_date": "2000-01-01"}')
print(result)

Get agent object's PL/SQL definition using select_ai.agent.get_definition()

plsql = get_definition("TASK", "MY_TASK")
print(plsql)

New Conversations APIs - list_prompts,  delete_prompt, add_tag, remove_tag

for item in conversation.list_prompts():
      print(item.conversation_prompt_id, item.prompt, item.prompt_response)

conversation.delete_prompt(conversation_prompt_id)

conversation.add_tag("PROJECT", "SELECT_AI")
conversation.remove_tag("PROJECT")

New Inspect Team APIs

team.describe_team()
team.list_tools()

@oracle-contributor-agreement oracle-contributor-agreement Bot added the OCA Verified All contributors have signed the Oracle Contributor Agreement. label Jul 30, 2026
@aosingh
aosingh merged commit 32d0f72 into main Jul 30, 2026
9 of 11 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

OCA Verified All contributors have signed the Oracle Contributor Agreement.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants