File size: 2,847 Bytes
3a00052
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import json
import os 
import tempfile

import gradio as gr
from huggingface_hub import HfApi

inputs_description = """This is a description of the inputs that the prompt expects.

{{input_var}}: {{Description}}
...
"""
usage_description = """Below is a code snippet for how to use the prompt.

```
{{Code snippet}}
```
"""
input_variables_description = "Comma-separated list of input variables. E.g. question,name"
template_description = "Imagine you're a teacher called {name}. A student asks the following question: {question}. What do you answer?"

api = HfApi()

def submit(name, description, inputs_description, usage_description, input_variables, template, token):
  variables = input_variables.split(",")

  card = f"""
---
tags:
- langchain
- prompt
---

# Description of {name}

{description}

## Inputs

{inputs_description}

## Usage

{usage_description}
"""
  
  with tempfile.TemporaryDirectory() as tmpdir:
      with open(os.path.join(tmpdir, "prompt.json"), "w") as f:
        data = {
          'input_variables': variables, 
          'output_parser': None,
          "template": template,
          "template_format": "f-string"
        }
        json.dump(data, f)

      with open(os.path.join(tmpdir, "README.md"), "w") as f:
        f.write(card)
      
      name = name.replace(" ", "_")
      res = api.upload_folder(
          repo_id="osanseviero/langchain_hub_test",
          folder_path=tmpdir,
          path_in_repo=f"prompts/{name}",
          token=token,
          repo_type="dataset",
          create_pr=True
      )
  return "Success! Check out https://huggingface.co/datasets/osanseviero/langchain_hub_test/discussions"

with gr.Blocks() as form:
    gr.Markdown("# LangChain Hub Form")
    gr.Markdown("## Submit a prompt")
    name = gr.Textbox(lines=1, placeholder="Name for the prompt", label="Name")
    high_level_description = gr.Textbox(lines=2, placeholder="High level text description of the prompt, including use cases.", interactive=True, label="Description")
    inputs_description = gr.Textbox(lines=3, value=inputs_description, interactive=True, label="Inputs Description")
    usage_description = gr.Textbox(lines=3, value=usage_description, interactive=True, label="Usage Description")

    input_variables = gr.Textbox(value=input_variables_description, interactive=True, label="Input Variables")
    template = gr.Textbox(lines=3, value=template_description, interactive=True, label="Template (use the input variables with {})")
    token = gr.Textbox(label="Write Token (from https://hf.co/settings/tokens)", type="password")

    btn = gr.Button(value="Open PR")
    inputs = [name, high_level_description, inputs_description, usage_description, input_variables, template, token]
    output = gr.Textbox()
    btn.click(submit, inputs=inputs, outputs=[output])

form.launch(debug=True)