Join the conversation

Join the community of Machine Learners and AI enthusiasts.

Sign Up
salma-remyx 
posted an update Oct 11
Post
1027
The future is arriving too fast not to use programmatic discovery and replication.
Search arXiv → Execute in 30 seconds with pre-built Docker environments

Check out our latest integration with AG2 to accelerate your discovery loop.
As easy as:
from remyxai.client.search import SearchClient
from autogen.coding import RemyxCodeExecutor

# Search by topic
papers = SearchClient().search(
    "data synthesis strategies",
    has_docker=True,  # Only papers with pre-built environments
    limit=10
)

executor = RemyxCodeExecutor(arxiv_id=papers[0].arxiv_id)

remyx_executor.explore(
    goal="Run a test with my model remyxai/SpaceThinker-Qwen2.5VL-3B",
    interactive=False  # Automated exploration
)


Tutorial: https://github.com/ag2ai/ag2/blob/4c6954e3959fe672980191f264e30d451bc23554/notebook/agentchat_remyx_executor.ipynb
PR: https://github.com/ag2ai/ag2/pull/2141
In this post