Skip to content

Commit

Permalink
fix: n4j example (#753)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wendong-Fan authored Jul 25, 2024
1 parent 714e3fa commit a0ea1aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion camel/agents/chat_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class ChatAgent(BaseAgent):
system_message (BaseMessage): The system message for the chat agent.
model (BaseModelBackend, optional): The model backend to use for
generating responses. (default: :obj:`OpenAIModel` with
`GPT_3_5_TURBO`)
`GPT_4O_MINI`)
api_key (str, optional): The API key for authenticating with the
LLM service. Only OpenAI and Anthropic model supported (default:
:obj:`None`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,12 @@

"""
===============================================================================
[{'node': {}}, {'node': {}}, {'node': {'id': 'CAMEL'}}, {'node': {'id':
'multi-agent framework'}}]
[{'node': {'id': 'CAMEL'}}, {'node': {'id': 'multi-agent framework'}}]
===============================================================================
"""

# Get schema from database
print(n4j.get_schema())
print(n4j.get_schema)

"""
===============================================================================
Expand All @@ -46,7 +45,7 @@
"""

# Get structured schema from database
print(n4j.get_structured_schema())
print(n4j.get_structured_schema)

"""
===============================================================================
Expand Down

0 comments on commit a0ea1aa

Please sign in to comment.