sriharsha-cr commited on
Commit
cfe8b7a
·
1 Parent(s): cbdaf60

Demo video

Browse files
Files changed (2) hide show
  1. README.md +6 -0
  2. app.py +1 -1
README.md CHANGED
@@ -31,6 +31,12 @@ No cloud. No API bill. Two small models running quietly on your machine.
31
 
32
  ---
33
 
 
 
 
 
 
 
34
  ## Why this fits Thousand Token Wood
35
 
36
  Working inside a tight token budget is not a limitation to work around — it is the problem worth solving. LLM context windows are finite, prompt costs are real, and bloated inputs degrade output quality. TinyPress treats the token count as a hard constraint and makes compression the primary interaction: you set the budget, the model meets it, and a quality score tells you how much meaning survived.
 
31
 
32
  ---
33
 
34
+ ## Demo
35
+
36
+ [![TinyPress Demo](https://img.youtube.com/vi/hDbIDtjjiB0/0.jpg)](https://youtu.be/hDbIDtjjiB0)
37
+
38
+ ---
39
+
40
  ## Why this fits Thousand Token Wood
41
 
42
  Working inside a tight token budget is not a limitation to work around — it is the problem worth solving. LLM context windows are finite, prompt costs are real, and bloated inputs degrade output quality. TinyPress treats the token count as a hard constraint and makes compression the primary interaction: you set the budget, the model meets it, and a quality score tells you how much meaning survived.
app.py CHANGED
@@ -21,7 +21,7 @@ if __name__ == "__main__":
21
  print("Starting TinyPress...")
22
  app = build_app()
23
  app.launch(
24
- share = True,
25
  debug = True,
26
  server_port = config.SERVER_PORT
27
  )
 
21
  print("Starting TinyPress...")
22
  app = build_app()
23
  app.launch(
24
+ share = False,
25
  debug = True,
26
  server_port = config.SERVER_PORT
27
  )