-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from EricLBuehler/non_chat_models
Support no chat template
- Loading branch information
Showing
6 changed files
with
110 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import openai | ||
import httpx | ||
import textwrap, json | ||
|
||
|
||
def log_response(response: httpx.Response): | ||
request = response.request | ||
print(f"Request: {request.method} {request.url}") | ||
print(" Headers:") | ||
for key, value in request.headers.items(): | ||
if key.lower() == "authorization": | ||
value = "[...]" | ||
if key.lower() == "cookie": | ||
value = value.split("=")[0] + "=..." | ||
print(f" {key}: {value}") | ||
print(" Body:") | ||
try: | ||
request_body = json.loads(request.content) | ||
print(textwrap.indent(json.dumps(request_body, indent=2), " ")) | ||
except json.JSONDecodeError: | ||
print(textwrap.indent(request.content.decode(), " ")) | ||
print(f"Response: status_code={response.status_code}") | ||
print(" Headers:") | ||
for key, value in response.headers.items(): | ||
if key.lower() == "set-cookie": | ||
value = value.split("=")[0] + "=..." | ||
print(f" {key}: {value}") | ||
|
||
|
||
openai.api_key = "EMPTY" | ||
openai.base_url = "http://localhost:1234/v1/" | ||
|
||
# Enable this to log requests and responses | ||
# openai.http_client = httpx.Client( | ||
# event_hooks={"request": [print], "response": [log_response]} | ||
# ) | ||
|
||
eos_toks = ["</s>", "<eos>", "<|endoftext|>"] | ||
|
||
while True: | ||
prompt = input(">>> ") | ||
completion = openai.chat.completions.create( | ||
model="mistral", | ||
messages=prompt, | ||
max_tokens=256, | ||
frequency_penalty=1.0, | ||
top_p=0.1, | ||
temperature=0, | ||
) | ||
resp = completion.choices[0].message.content | ||
for eos in eos_toks: | ||
if resp.endswith(eos): | ||
out = resp[: -len(eos)] | ||
print(out) | ||
break | ||
else: | ||
print(resp + "...") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters