Skip to content

Commit

Permalink
job_chat: fix issue on formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
josephjclark committed Aug 20, 2024
1 parent 6ff2fa4 commit 9bee9b9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# apollo

## 0.4.1

### Patch Changes

- job chat: fix formatting issue

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "apollo",
"module": "platform/index.ts",
"version": "0.4.0",
"version": "0.4.1",
"type": "module",
"scripts": {
"start": "NODE_ENV=production bun platform/src/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions services/job_chat/job_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ def generate(content, history, context, api_key) -> str:
# print("...")

if message.usage.cache_creation_input_tokens:
print("CACHE :: WRITE :: {} Tokens").format(message.usage.cache_creation_input_tokens)
print("CACHE :: WRITE :: {} Tokens".format(message.usage.cache_creation_input_tokens))

if message.usage.cache_read_input_tokens:
print("CACHE :: READ :: {} Tokens").format(message.usage.cache_read_input_tokens)
print("CACHE :: READ :: {} Tokens".format(message.usage.cache_read_input_tokens))

response = []

Expand Down

0 comments on commit 9bee9b9

Please sign in to comment.