Spaces:
Running
Running
| import requests | |
| API_URL = "https://huggingface.co/proxy/api-inference.huggingface.co/models/KoboldAI/OPT-2.7B-Nerys-v2" | |
| headers = {"Authorization": "Bearer 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"} | |
| def query(payload): | |
| response = requests.post(API_URL, headers=headers, json=payload) | |
| return response.json() | |
| output = query({ | |
| "inputs": "Can you please let us know more details about your ", | |
| }) |