Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed Oct 4, 2023
1 parent 45a2766 commit 6e7cceb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion provider.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from llama_cpp import Llama
from bs4 import BeautifulSoup
from typing import List
import os
import re
import requests
Expand Down Expand Up @@ -154,7 +155,7 @@ async def streaming_generation(data):
class LLM:
def __init__(
self,
stop: str = "<|im_end|>",
stop: List[str] = "<|im_end|>",
max_tokens: int = 8192,
temperature: float = 1.31,
top_p: float = 1.0,
Expand Down

0 comments on commit 6e7cceb

Please sign in to comment.