1simo commited on
Commit
0538687
·
verified ·
1 Parent(s): b953530

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +20 -6
README.md CHANGED
@@ -1,12 +1,26 @@
1
  ---
2
- title: My Simple Llm Demo
3
- emoji: 🐠
4
- colorFrom: pink
5
- colorTo: gray
6
  sdk: gradio
7
- sdk_version: 5.31.0
 
 
 
 
8
  app_file: app.py
9
  pinned: false
 
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Simple LLM Text Generator
3
+ emoji: 📝
4
+ colorFrom: green
5
+ colorTo: blue
6
  sdk: gradio
7
+ sdk_version: 4.20.0
8
+ # Adjust sdk_version if your local gradio version is very different,
9
+ # or let Spaces try to infer it. Usually, it's best to match your
10
+ # gradio version in requirements.txt as closely as possible.
11
+ # For gradio 5.x, this might need to be higher e.g. 5.0.0
12
  app_file: app.py
13
  pinned: false
14
+ license: mit
15
  ---
16
 
17
+ # Simple LLM Text Generator Demo
18
+
19
+ This is a very basic Gradio application that uses the `distilgpt2` model to generate text continuations from a given prompt.
20
+
21
+ **How to use:**
22
+ 1. Enter your starting text in the "Enter your prompt" box.
23
+ 2. Click "Submit".
24
+ 3. See the LLM's attempt to continue your text!
25
+
26
+ Built with Gradio and Hugging Face Transformers.