Update README.md
Browse files
README.md
CHANGED
@@ -22,6 +22,18 @@ Generates and Edits minimal multi-file python code. Right now consistently gener
|
|
22 |
<!-- Provide the basic links for the model. -->
|
23 |
|
24 |
- **Repository:** https://github.com/reshinthadithyan/repo-level-code/tree/main
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
### Usage
|
26 |
```python
|
27 |
import torch
|
|
|
22 |
<!-- Provide the basic links for the model. -->
|
23 |
|
24 |
- **Repository:** https://github.com/reshinthadithyan/repo-level-code/tree/main
|
25 |
+
|
26 |
+
### Generated Format
|
27 |
+
The model generates the repository in the following format, Code to parse it and make a repository is also given below
|
28 |
+
```txt
|
29 |
+
<libs>pytorch,wandb</libs>
|
30 |
+
<planning>PLANNING AS MARKDOWN FORMAT</planning>
|
31 |
+
<requirements>>CONTENT FOR THE REQS FILE HERE</requirements>
|
32 |
+
<output><file1>src/dataset.py<content>YOUR PYTHON CODE HERE</content></file1>
|
33 |
+
<file2>src/model.py<content>YOUR PYTHON CODE HERE</content></file2>
|
34 |
+
<bashfile>run.sh<content>python3 src/model.py</content></bashfile></output>
|
35 |
+
|
36 |
+
```
|
37 |
### Usage
|
38 |
```python
|
39 |
import torch
|