broadfield-dev commited on
Commit
4f0879f
·
verified ·
1 Parent(s): 7cb6dab

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -0
README.md CHANGED
@@ -20,4 +20,5 @@ import requests; data = requests.post("http://localhost:7860/api/process", json=
20
  Useful if you are appending directly to a file or stream.
21
  ```python
22
  import requests; jsonl_string = requests.post("http://localhost:7860/api/process", json={"code": "def hello(): pass", "format": "jsonl"}, headers={"Authorization": "Bearer hf_YOUR_TOKEN"}).text
 
23
  ```
 
20
  Useful if you are appending directly to a file or stream.
21
  ```python
22
  import requests; jsonl_string = requests.post("http://localhost:7860/api/process", json={"code": "def hello(): pass", "format": "jsonl"}, headers={"Authorization": "Bearer hf_YOUR_TOKEN"}).text
23
+ requests.post("https://broadfield-dev-noding.hf.space/api/process", json={"code": "def hello(): pass", "format": "jsonl"}).text
24
  ```