Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -87,7 +87,7 @@ def transcribe_video(youtube_url: str, path: str) -> List[Document]:
|
|
87 |
return [Document(page_content=result[1], metadata=dict(page=1))]
|
88 |
|
89 |
def predict(
|
90 |
-
message: str, system_prompt: str = "", model_url: str = models["Llama2-
|
91 |
) -> Any:
|
92 |
"""
|
93 |
Predict a response using a client.
|
|
|
87 |
return [Document(page_content=result[1], metadata=dict(page=1))]
|
88 |
|
89 |
def predict(
|
90 |
+
message: str, system_prompt: str = "", model_url: str = models["Llama2-13b"]["chat_link"]
|
91 |
) -> Any:
|
92 |
"""
|
93 |
Predict a response using a client.
|