Created
October 13, 2025 10:11
-
-
Save Sumanth077/54ed1253bb0dd3c21415730a4b07d825 to your computer and use it in GitHub Desktop.
Test the locally running model via Python SDK.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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