Skip to content

Commit

Permalink
blank string over none
Browse files Browse the repository at this point in the history
  • Loading branch information
WillBeebe committed Jul 11, 2024
1 parent 236a4a7 commit dd9ca3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ada-python"
version = "0.3.1"
version = "0.3.2"
description = "Ada, making LLMs easier to work with."
authors = ["Will Beebe"]
packages = [
Expand Down
2 changes: 1 addition & 1 deletion src/agents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
logger = logging.getLogger(__name__)

class Agent(LLM):
def __init__(self, client, tool_manager: ToolManager, system_prompt: str = None, tools=[], storage_manager: StorageManager = None):
def __init__(self, client, tool_manager: ToolManager, system_prompt: str = "", tools=[], storage_manager: StorageManager = None):
self.tools = tools
logger.debug("Initializing Agent with tools: %s and system prompt: '%s'", tools, system_prompt)
super().__init__(
Expand Down

0 comments on commit dd9ca3b

Please sign in to comment.