Skip to content

Commit

Permalink
RELEASE: 0.0.1a36
Browse files Browse the repository at this point in the history
  • Loading branch information
brucewlee committed Mar 17, 2024
1 parent 1901582 commit 3224692
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nutcracker/runs/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def _single_call(self, instance):
if type(raw_response) == str:
instance.model_response = raw_response
elif type(raw_response) == dict:
if 'response' in raw_response:
if 'model_response' in raw_response:
instance.model_response = raw_response['model_response']
if 'first_logprobs' in raw_response:
if 'model_response_logprobs' in raw_response:
instance.model_response_logprobs = raw_response['model_response_logprobs']
if 'user_prompt' in raw_response:
instance.user_prompt = raw_response['user_prompt']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from distutils.core import setup
from setuptools import find_packages

this_version='0.0.1a35'
this_version='0.0.1a36'

# python setup.py sdist
# python -m twine upload dist/*
Expand Down

0 comments on commit 3224692

Please sign in to comment.