avi-pipable commited on
Commit
76aff1f
1 Parent(s): 690efaf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -101,14 +101,14 @@ def download_file(shared_url, destination):
101
  except Exception as e:
102
  print(f"Error downloading file from Google Drive as {e}")
103
  raise e
104
- """
105
  </function_code>
106
  <instructions>
107
  1. In the examples while calling function use the name mentioned after `def ` in the above function_code.
108
  2. In the generated docs use valid python type hints as per PEP 484.
109
  </instructions>
110
  <question>Document the python code above giving function description ,parameters and return type and example how to call the function.</question>
111
- <doc>"""
 
112
  inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
113
  outputs = model.generate(**inputs, max_new_tokens=450)
114
  doc = (
 
101
  except Exception as e:
102
  print(f"Error downloading file from Google Drive as {e}")
103
  raise e
 
104
  </function_code>
105
  <instructions>
106
  1. In the examples while calling function use the name mentioned after `def ` in the above function_code.
107
  2. In the generated docs use valid python type hints as per PEP 484.
108
  </instructions>
109
  <question>Document the python code above giving function description ,parameters and return type and example how to call the function.</question>
110
+ <doc>
111
+ """
112
  inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
113
  outputs = model.generate(**inputs, max_new_tokens=450)
114
  doc = (