Yash Sachdeva commited on
Commit
8692992
·
1 Parent(s): b554914

question_paper

Browse files
Files changed (1) hide show
  1. question_paper.py +0 -4
question_paper.py CHANGED
@@ -11,10 +11,6 @@ app = FastAPI()
11
  model = "meta-llama/Llama-2-70b"
12
 
13
  @app.get("/")
14
- def read_root():
15
- return {"Hello": "World!"}
16
-
17
- @app.get("/llama")
18
  def llama():
19
  tokenizer = AutoTokenizer.from_pretrained(model)
20
 
 
11
  model = "meta-llama/Llama-2-70b"
12
 
13
  @app.get("/")
 
 
 
 
14
  def llama():
15
  tokenizer = AutoTokenizer.from_pretrained(model)
16