hadadrjt commited on
Commit
92220a2
·
1 Parent(s): 725ff17

ai: Optimizing inference proxy for LLMs.

Browse files
Files changed (3) hide show
  1. README.md +0 -1
  2. jarvis.py +9 -0
  3. requirements.txt +2 -0
README.md CHANGED
@@ -3,7 +3,6 @@ title: Jarvis AI
3
  colorFrom: yellow
4
  colorTo: purple
5
  sdk: gradio
6
- sdk_version: 5.23.3
7
  app_file: jarvis.py
8
  pinned: true
9
  short_description: Inspired by Iron Man movies.
 
3
  colorFrom: yellow
4
  colorTo: purple
5
  sdk: gradio
 
6
  app_file: jarvis.py
7
  pinned: true
8
  short_description: Inspired by Iron Man movies.
jarvis.py CHANGED
@@ -17,6 +17,15 @@ import pptx
17
  import fitz
18
  import io
19
  import uuid
 
 
 
 
 
 
 
 
 
20
  from pathlib import Path
21
  from PIL import Image
22
  from pptx import Presentation
 
17
  import fitz
18
  import io
19
  import uuid
20
+
21
+ from optillm.cot_reflection import cot_reflection
22
+ from optillm.leap import leap
23
+ from optillm.plansearch import plansearch
24
+ from optillm.reread import re2_approach
25
+ from optillm.rto import round_trip_optimization
26
+ from optillm.self_consistency import advanced_self_consistency_approach
27
+ from optillm.z3_solver import Z3SymPySolverSystem
28
+
29
  from pathlib import Path
30
  from PIL import Image
31
  from pptx import Presentation
requirements.txt CHANGED
@@ -1,4 +1,5 @@
1
  huggingface_hub
 
2
  pytesseract
3
  pdfplumber
4
  python-docx
@@ -6,3 +7,4 @@ pandas
6
  python-pptx
7
  PyMuPDF
8
  Pillow
 
 
1
  huggingface_hub
2
+ gradio
3
  pytesseract
4
  pdfplumber
5
  python-docx
 
7
  python-pptx
8
  PyMuPDF
9
  Pillow
10
+ optillm