Skip to content

Instantly share code, notes, and snippets.

@Sumanth077
Created October 13, 2025 10:11
Show Gist options
  • Save Sumanth077/54ed1253bb0dd3c21415730a4b07d825 to your computer and use it in GitHub Desktop.
Save Sumanth077/54ed1253bb0dd3c21415730a4b07d825 to your computer and use it in GitHub Desktop.
Test the locally running model via Python SDK.
from clarifai.client import Model
model = Model("https://clarifai.com/your-username/local-runner-app/models/local-runner-model")
response = model.predict(prompt="Explain retrieval-augmented generation.")
print(response)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment