Skip to content

Commit 3f53c8a

Browse files
committed
minor cleanup and bump to a minor version
1 parent 8d622ab commit 3f53c8a

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dataneuron"
3-
version = "0.1.7"
3+
version = "0.2.0"
44
description = "An AI Data framework to create AI Data Analyst"
55
authors = ["Vysakh Sreenivasan <srvysakh@gmail.com>"]
66
license = "MIT"

src/data_neuron/api/claude_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ def stream_claude_response(query: str, chat_history: Optional[list] = None, inst
138138
'max_tokens': MAX_TOKENS,
139139
'stream': True
140140
}
141-
print("messages", messages)
142141
try:
143142
response = make_api_call(data, headers, stream=True)
144143
for line in response.iter_lines():
@@ -153,5 +152,4 @@ def stream_claude_response(query: str, chat_history: Optional[list] = None, inst
153152
break
154153

155154
except Exception as e:
156-
logger.error(f"Error in stream_claude_response: {e}")
157155
yield f"Error: {str(e)}"

src/data_neuron/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .report_cmd.main import generate_report # New import
77
from .server import run_server
88

9-
VERSION = "0.1.7" # Update this as you release new versions
9+
VERSION = "0.2.0" # Update this as you release new versions
1010

1111

1212
@click.command()

0 commit comments

Comments
 (0)