mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-01 12:02:05 +00:00
Add durable public-URL output and URL-based chaining to xAI Grok Imagine: - Store generated media on files-cdn with permanent public HTTPS URLs (public_url: true, no expiry by default). - Chain by URL: generate -> edit -> extend each take a prior result's public HTTPS URL (or a data URI / local file for inputs). - Add provider-specific xai_video_edit and xai_video_extend tools. - Image generation: public-URL/storage output, multi-reference edits, and ~/ local-path support for image edits. Credentials use xAI Grok device-code OAuth (separate PR).
188 lines
6.2 KiB
Python
188 lines
6.2 KiB
Python
"""Smoke tests for the xAI video gen plugin — load & register surface."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from agent import video_gen_registry
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _reset_registry():
|
|
video_gen_registry._reset_for_tests()
|
|
yield
|
|
video_gen_registry._reset_for_tests()
|
|
|
|
|
|
def test_xai_provider_registers():
|
|
from plugins.video_gen.xai import XAIVideoGenProvider
|
|
|
|
provider = XAIVideoGenProvider()
|
|
video_gen_registry.register_provider(provider)
|
|
|
|
assert video_gen_registry.get_provider("xai") is provider
|
|
assert provider.display_name == "xAI"
|
|
assert provider.default_model() == "grok-imagine-video"
|
|
|
|
|
|
def test_xai_provider_lists_text_and_current_image_video_models():
|
|
from plugins.video_gen.xai import XAIVideoGenProvider
|
|
|
|
models = XAIVideoGenProvider().list_models()
|
|
ids = [model["id"] for model in models]
|
|
|
|
assert ids[0] == "grok-imagine-video"
|
|
assert ids[1] == "grok-imagine-video-1.5"
|
|
assert models[1]["modalities"] == ["image"]
|
|
assert "aliases" not in models[1]
|
|
|
|
|
|
def test_xai_routes_default_models_by_modality():
|
|
from plugins.video_gen.xai import _resolve_model_for_modality
|
|
|
|
assert _resolve_model_for_modality(
|
|
"grok-imagine-video",
|
|
modality="text",
|
|
explicit_model=False,
|
|
) == "grok-imagine-video"
|
|
assert _resolve_model_for_modality(
|
|
"grok-imagine-video",
|
|
modality="image",
|
|
explicit_model=False,
|
|
) == "grok-imagine-video-1.5"
|
|
assert _resolve_model_for_modality(
|
|
"grok-imagine-video-1.5-preview",
|
|
modality="text",
|
|
explicit_model=False,
|
|
) == "grok-imagine-video"
|
|
assert _resolve_model_for_modality(
|
|
"grok-imagine-video-1.5-preview",
|
|
modality="text",
|
|
explicit_model=True,
|
|
) == "grok-imagine-video-1.5-preview"
|
|
|
|
|
|
def test_xai_capabilities_keep_generate_surface_only():
|
|
from plugins.video_gen.xai import XAIVideoGenProvider
|
|
|
|
caps = XAIVideoGenProvider().capabilities()
|
|
assert caps["modalities"] == ["text", "image"]
|
|
assert "operations" not in caps
|
|
assert caps["max_reference_images"] == 7
|
|
|
|
|
|
def test_xai_unavailable_without_key(monkeypatch):
|
|
from plugins.video_gen.xai import XAIVideoGenProvider
|
|
|
|
monkeypatch.delenv("XAI_API_KEY", raising=False)
|
|
assert XAIVideoGenProvider().is_available() is False
|
|
|
|
|
|
def test_xai_generate_requires_xai_key(monkeypatch):
|
|
from plugins.video_gen.xai import XAIVideoGenProvider
|
|
|
|
monkeypatch.delenv("XAI_API_KEY", raising=False)
|
|
result = XAIVideoGenProvider().generate("a happy dog")
|
|
assert result["success"] is False
|
|
assert result["error_type"] == "auth_required"
|
|
|
|
|
|
def test_xai_available_with_oauth_only(monkeypatch):
|
|
"""The plugin must honour xAI Grok OAuth credentials, not just
|
|
XAI_API_KEY. Otherwise the agent's tool-availability check filters
|
|
``video_generate`` out of the toolbelt and the agent silently falls
|
|
back to whatever skill advertises video generation (e.g. comfyui).
|
|
"""
|
|
import plugins.video_gen.xai as xai_plugin
|
|
|
|
monkeypatch.delenv("XAI_API_KEY", raising=False)
|
|
monkeypatch.setattr(
|
|
"tools.xai_http.resolve_xai_http_credentials",
|
|
lambda: {
|
|
"provider": "xai-oauth",
|
|
"api_key": "oauth-bearer-token",
|
|
"base_url": "https://api.x.ai/v1",
|
|
},
|
|
)
|
|
|
|
assert xai_plugin.XAIVideoGenProvider().is_available() is True
|
|
|
|
|
|
def test_xai_resolved_credentials_threaded_through_request(monkeypatch):
|
|
"""OAuth-resolved creds must reach the HTTP layer — bug class where
|
|
``is_available()`` says yes but the request still hits with no key.
|
|
"""
|
|
import plugins.video_gen.xai as xai_plugin
|
|
|
|
monkeypatch.delenv("XAI_API_KEY", raising=False)
|
|
monkeypatch.setattr(
|
|
"tools.xai_http.resolve_xai_http_credentials",
|
|
lambda: {
|
|
"provider": "xai-oauth",
|
|
"api_key": "oauth-bearer-token",
|
|
"base_url": "https://api.x.ai/v1",
|
|
},
|
|
)
|
|
|
|
api_key, base_url = xai_plugin._resolve_xai_credentials()
|
|
assert api_key == "oauth-bearer-token"
|
|
assert base_url == "https://api.x.ai/v1"
|
|
headers = xai_plugin._xai_headers(api_key)
|
|
assert headers["Authorization"] == "Bearer oauth-bearer-token"
|
|
|
|
|
|
def test_xai_no_operation_kwarg():
|
|
"""The ABC's generate() signature no longer accepts 'operation'.
|
|
Passing it through **kwargs should be ignored (forward-compat)."""
|
|
from plugins.video_gen.xai import XAIVideoGenProvider
|
|
|
|
# We're not actually hitting the network — just verify the call
|
|
# doesn't TypeError on the unexpected kwarg.
|
|
# Will fail with auth_required (no XAI_API_KEY), but should NOT
|
|
# fail with TypeError.
|
|
result = XAIVideoGenProvider().generate("x", operation="generate")
|
|
assert result["success"] is False
|
|
# auth_required, NOT some signature error
|
|
assert result["error_type"] in {"auth_required", "api_error"}
|
|
|
|
|
|
def test_xai_video_output_urls_prefers_stored_public_url():
|
|
from plugins.video_gen.xai import _xai_video_output_urls
|
|
|
|
public_url, temporary, stored = _xai_video_output_urls({
|
|
"url": "https://vidgen.x.ai/xai-vidgen-bucket/out.mp4",
|
|
"file_output": {
|
|
"public_url": "https://files-cdn.x.ai/token/file_abc.mp4",
|
|
"file_id": "file_abc",
|
|
},
|
|
})
|
|
assert public_url == "https://files-cdn.x.ai/token/file_abc.mp4"
|
|
assert stored == "https://files-cdn.x.ai/token/file_abc.mp4"
|
|
assert temporary == "https://vidgen.x.ai/xai-vidgen-bucket/out.mp4"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_video_input_from_public_url_uses_url_field():
|
|
from plugins.video_gen.xai import _video_input_from_public_url
|
|
|
|
url = "https://files-cdn.x.ai/kRQVP6PRQlioVAUNC3GAdg/file_1faca9c3-9411-46ad-bb41-b9b8527789e6.mp4"
|
|
result = await _video_input_from_public_url(
|
|
url,
|
|
api_key="test-key",
|
|
base_url="https://api.x.ai/v1",
|
|
)
|
|
assert result == {"url": url}
|
|
|
|
|
|
def test_video_input_from_public_url_rejects_bare_file_id():
|
|
import asyncio
|
|
from plugins.video_gen.xai import _video_input_from_public_url
|
|
|
|
result = asyncio.run(
|
|
_video_input_from_public_url(
|
|
"file_1faca9c3-9411-46ad-bb41-b9b8527789e6",
|
|
api_key="test-key",
|
|
base_url="https://api.x.ai/v1",
|
|
)
|
|
)
|
|
assert result is None
|