Skip to content

Commit

Permalink
[fix] add total usage for anthropic multimodal
Browse files Browse the repository at this point in the history
  • Loading branch information
Daggx committed May 15, 2024
1 parent 0c21160 commit 556043f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
7 changes: 6 additions & 1 deletion edenai_apis/apis/anthropic/anthropic_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,14 @@ def multimodal__chat(
original_response = self.__anthropic_request(
request_body=request_body, model=model
)

generated_text = original_response["content"][0]["text"]

# Calculate total usage
original_response["usage"]["total_tokens"] = (
original_response["usage"]["input_tokens"]
+ original_response["usage"]["output_tokens"]
)

standardized_response = (
ChatMultimodalDataClass.generate_standardized_response(
generated_text=generated_text, messages=messages
Expand Down
13 changes: 7 additions & 6 deletions edenai_apis/apis/anthropic/outputs/multimodal/chat_output.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
{
"original_response": {
"id": "msg_014iDSJ4Juvko2577PhRDsQo",
"id": "msg_01KDs9mZ31EVLczTkdafmTDQ",
"type": "message",
"role": "assistant",
"content": [
{
"type": "text",
"text": "The image depicts a peaceful nature scene. In the foreground, there is a wooden boardwalk or trail that extends through a lush green meadow filled with tall grasses. The boardwalk leads the viewer's eye towards the distance, where trees and bushes can be seen lining the horizon. The sky above is a beautiful shade of blue with scattered white clouds, creating a serene and tranquil atmosphere. The image conveys a sense of serenity and invites the viewer to explore the natural surroundings along the path."
"text": "The image depicts a peaceful nature scene. In the foreground, there is a wooden boardwalk or trail that extends through a lush green meadow filled with tall grass. The boardwalk leads the viewer's eye towards the distance, where trees and bushes can be seen lining the horizon. The sky above is a beautiful shade of blue with scattered white clouds, creating a serene and tranquil atmosphere. The image conveys a sense of serenity and invites the viewer to explore the natural surroundings along the path."
}
],
"model": "claude-3-sonnet-28k-20240229",
"stop_reason": "end_turn",
"stop_sequence": null,
"usage": {
"input_tokens": 1613,
"output_tokens": 116
"output_tokens": 115,
"total_tokens": 1728
}
},
"standardized_response": {
"generated_text": "The image depicts a peaceful nature scene. In the foreground, there is a wooden boardwalk or trail that extends through a lush green meadow filled with tall grasses. The boardwalk leads the viewer's eye towards the distance, where trees and bushes can be seen lining the horizon. The sky above is a beautiful shade of blue with scattered white clouds, creating a serene and tranquil atmosphere. The image conveys a sense of serenity and invites the viewer to explore the natural surroundings along the path.",
"generated_text": "The image depicts a peaceful nature scene. In the foreground, there is a wooden boardwalk or trail that extends through a lush green meadow filled with tall grass. The boardwalk leads the viewer's eye towards the distance, where trees and bushes can be seen lining the horizon. The sky above is a beautiful shade of blue with scattered white clouds, creating a serene and tranquil atmosphere. The image conveys a sense of serenity and invites the viewer to explore the natural surroundings along the path.",
"messages": [
{
"role": "user",
Expand All @@ -38,7 +39,7 @@
"media_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",
"media_base64": null,
"text": null,
"media_type": null
"media_type": "image/jpeg"
}
}
]
Expand All @@ -51,7 +52,7 @@
"content": {
"media_url": null,
"media_base64": null,
"text": "The image depicts a peaceful nature scene. In the foreground, there is a wooden boardwalk or trail that extends through a lush green meadow filled with tall grasses. The boardwalk leads the viewer's eye towards the distance, where trees and bushes can be seen lining the horizon. The sky above is a beautiful shade of blue with scattered white clouds, creating a serene and tranquil atmosphere. The image conveys a sense of serenity and invites the viewer to explore the natural surroundings along the path.",
"text": "The image depicts a peaceful nature scene. In the foreground, there is a wooden boardwalk or trail that extends through a lush green meadow filled with tall grass. The boardwalk leads the viewer's eye towards the distance, where trees and bushes can be seen lining the horizon. The sky above is a beautiful shade of blue with scattered white clouds, creating a serene and tranquil atmosphere. The image conveys a sense of serenity and invites the viewer to explore the natural surroundings along the path.",
"media_type": null
}
}
Expand Down

0 comments on commit 556043f

Please sign in to comment.