Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Integrate Rotavision with Google Cloud Platform
from rotavision import Rotavision client = Rotavision() # Analyze data from GCS result = client.vishwas.analyze( model_id="my-model", dataset={ "data_url": "gs://my-bucket/predictions.parquet", "gcp_credentials": { "service_account_key": {...} # JSON key } } )
from rotavision.integrations.gcp import VertexAIMonitor monitor = VertexAIMonitor( project_id="my-project", endpoint_id="123456789", rotavision_api_key="rv_live_..." ) monitor.start()
response = client.sankalp.proxy( model="gemini-3-pro", messages=[{"role": "user", "content": "Hello"}] )