Skip to content
Merged
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
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ invoked over a protocol boundary.
- [Remote Agent](examples/remote_agent) implements AX's native `AgentService` directly.
- [ADK Agent (Python)](examples/adk_agent) runs a Google ADK agent as a remote agent.
- [A2A Agent](examples/a2a_agent) connects agents that speak the [A2A protocol](https://github.com/a2aproject/A2A) through AX's A2A bridge.
- [Colab Agents (Experimental)](examples/colab_agent) runs Python scripts or notebooks in a remote Google Colab session.

Please note that AX is actively developing its resumable streaming and agent communication protocols; these interfaces will change before a stable release.

Expand Down
17 changes: 0 additions & 17 deletions ax.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,3 @@ registry:
# credential_env: "CODING_AGENT_AUTH_TOKEN"
# metadata:
# version: "1.0"

# colab_agents:
# - id: "plotter"
# name: "Function Plotter"
# description: "Plots mathematical functions on a Colab session."
# local_file: "./examples/colab_agent/plot.py"
# requirements: "./examples/colab_agent/requirements.txt"
# input_flag: "input"
# output_image: "./examples/colab_agent/plot.png"
# output_drive_path: "MyDrive/notebooks/plot.ipynb"
#
# - id: "data-analysis"
# name: "Data Analysis"
# description: "Analyzes data using a Colab notebook on Google Drive."
# drive_file: "MyDrive/notebooks/data_analysis.ipynb"
# input_flag: "query"
# output_image: "./examples/colab_agent/chart.png"
6 changes: 0 additions & 6 deletions cmd/ax/internal/cliutil/cliutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,6 @@ func NewControllerFromConfig(ctx context.Context, cfg *Config) (*controller.Cont
}
}

for _, agentCfg := range cfg.Registry.ColabAgents {
if err := c.Registry().RegisterColab(agentCfg); err != nil {
return nil, fmt.Errorf("failed to register colab agent %s: %w", agentCfg.ID, err)
}
}


return c, nil
}
162 changes: 0 additions & 162 deletions examples/colab_agent/README.md

This file was deleted.

164 changes: 0 additions & 164 deletions examples/colab_agent/data_analysis.ipynb

This file was deleted.

Loading
Loading